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 -2
View File
@@ -1,10 +1,9 @@
import React from "react";
import classnames from "classnames";
import { TextProps } from "../Text";
import Styles from "../Text.module.css";
const Title3: React.FunctionComponent<TextProps> = (props: TextProps) => {
const classes = classnames(Styles["text--title3"], props?.className, props?.color);
const classes = classnames("text-xs font-semibold leading-tight text-gray-900 dark:text-white");
return <p className={classes}>{props.children}</p>;
};