13 lines
401 B
TypeScript
13 lines
401 B
TypeScript
|
import React from "react";
|
||
|
import classnames from "classnames";
|
||
|
import { TextProps } from "../Text";
|
||
|
import Styles from "../Text.module.css";
|
||
|
|
||
|
const Subheadline: React.FunctionComponent<TextProps> = (props: TextProps) => {
|
||
|
const classes = classnames(Styles["text--subheadline"], props?.className, props?.color);
|
||
|
|
||
|
return <p className={classes}>{props.children}</p>;
|
||
|
};
|
||
|
|
||
|
export default Subheadline;
|