cal.pub0.org/apps/web/components/ui/Text/Caption/Caption.tsx

13 lines
380 B
TypeScript
Raw Normal View History

import classnames from "classnames";
import React from "react";
import { TextProps } from "../Text";
const Caption: React.FunctionComponent<TextProps> = (props: TextProps) => {
const classes = classnames("text-sm text-gray-500 dark:text-white leading-tight", props?.className);
return <p className={classes}>{props?.text || props.children}</p>;
};
export default Caption;