13 lines
377 B
TypeScript
13 lines
377 B
TypeScript
import classnames from "classnames";
|
|
import React from "react";
|
|
|
|
import { TextProps } from "../Text";
|
|
|
|
const Headline: React.FunctionComponent<TextProps> = (props: TextProps) => {
|
|
const classes = classnames("font-cal text-xl text-gray-900 dark:text-white", props?.className);
|
|
|
|
return <p className={classes}>{props?.text || props.children}</p>;
|
|
};
|
|
|
|
export default Headline;
|