calcom/apps/web/components/ui/Text/Footnote/Footnote.tsx
2022-02-10 14:22:45 -07:00

12 lines
380 B
TypeScript

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