12 lines
344 B
TypeScript
12 lines
344 B
TypeScript
import React from "react";
|
|
import classnames from "classnames";
|
|
import { TextProps } from "../Text";
|
|
|
|
const Title2: React.FunctionComponent<TextProps> = (props: TextProps) => {
|
|
const classes = classnames("text-base font-normal text-gray-900 dark:text-white");
|
|
|
|
return <p className={classes}>{props.children}</p>;
|
|
};
|
|
|
|
export default Title2;
|