2021-07-15 14:10:26 +00:00
|
|
|
import React from "react";
|
|
|
|
import classnames from "classnames";
|
|
|
|
import { TextProps } from "../Text";
|
|
|
|
|
|
|
|
const Subheadline: React.FunctionComponent<TextProps> = (props: TextProps) => {
|
2021-09-02 12:13:19 +00:00
|
|
|
const classes = classnames("text-xl text-gray-500 dark:text-white leading-relaxed", props?.className);
|
2021-07-15 14:10:26 +00:00
|
|
|
|
2021-09-02 12:13:19 +00:00
|
|
|
return <p className={classes}>{props?.text || props.children}</p>;
|
2021-07-15 14:10:26 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
export default Subheadline;
|