import React from "react"; import classnames from "classnames"; import { TextProps } from "../Text"; const Largetitle: React.FunctionComponent = (props: TextProps) => { const classes = classnames("text-3xl font-extrabold text-gray-900 dark:text-white", props?.className); return

{props?.text || props.children}

; }; export default Largetitle;