cal.pub0.org/components/ui/Text/Caption2/Caption2.tsx

12 lines
355 B
TypeScript
Raw Normal View History

import React from "react";
import classnames from "classnames";
import { TextProps } from "../Text";
const Caption2: React.FunctionComponent<TextProps> = (props: TextProps) => {
2021-08-13 18:18:14 +00:00
const classes = classnames("text-xs italic text-gray-500 dark:text-white leading-tight");
return <p className={classes}>{props.children}</p>;
};
export default Caption2;