use classnames, remove css

This commit is contained in:
femyeda
2021-08-13 13:18:14 -05:00
parent da98a1ff1d
commit b46cf39ef2
13 changed files with 14 additions and 75 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ import classnames from "classnames";
import { TextProps } from "../Text";
const Footnote: React.FunctionComponent<TextProps> = (props: TextProps) => {
const classes = classnames("text--footnote", props?.className, props?.color);
const classes = classnames("text-base font-normal text-gray-900 dark:text-white");
return <p className={classes}>{props.children}</p>;
};