12 lines
		
	
	
	
		
			383 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			383 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import classnames from "classnames";
 | 
						|
import React from "react";
 | 
						|
 | 
						|
import { TextProps } from "../Text";
 | 
						|
 | 
						|
const Subtitle: React.FunctionComponent<TextProps> = (props: TextProps) => {
 | 
						|
  const classes = classnames("text-sm font-normal text-neutral-500 dark:text-white", props?.className);
 | 
						|
 | 
						|
  return <p className={classes}>{props?.text || props.children}</p>;
 | 
						|
};
 | 
						|
 | 
						|
export default Subtitle;
 |