 d194878bb2
			
		
	
	
		d194878bb2
		
			
		
	
	
	
	
		
			
			* Suggestion: let prettier sort imports order # Conflicts: # yarn.lock * AUTO SORT ALL THE IMPORTS * Linting * Fixes test
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			389 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			389 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import classnames from "classnames";
 | |
| import React from "react";
 | |
| 
 | |
| import { TextProps } from "../Text";
 | |
| 
 | |
| const Caption2: React.FunctionComponent<TextProps> = (props: TextProps) => {
 | |
|   const classes = classnames("text-xs italic text-gray-500 dark:text-white leading-tight", props?.className);
 | |
| 
 | |
|   return <p className={classes}>{props?.text || props.children}</p>;
 | |
| };
 | |
| 
 | |
| export default Caption2;
 |