
* Suggestion: let prettier sort imports order # Conflicts: # yarn.lock * AUTO SORT ALL THE IMPORTS * Linting * Fixes test
12 lines
388 B
TypeScript
12 lines
388 B
TypeScript
import classnames from "classnames";
|
|
import React from "react";
|
|
|
|
import { TextProps } from "../Text";
|
|
|
|
const Largetitle: React.FunctionComponent<TextProps> = (props: TextProps) => {
|
|
const classes = classnames("text-3xl font-extrabold text-gray-900 dark:text-white", props?.className);
|
|
|
|
return <p className={classes}>{props?.text || props.children}</p>;
|
|
};
|
|
|
|
export default Largetitle;
|