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

12 lines
342 B
TypeScript
Raw Normal View History

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