mirror of
https://github.com/logos-messaging/logos-messaging-frontend.git
synced 2026-01-07 00:03:10 +00:00
9 lines
222 B
TypeScript
9 lines
222 B
TypeScript
type SubtitleProps = {
|
|
children: any;
|
|
className?: string;
|
|
};
|
|
|
|
export const Subtitle: React.FunctionComponent<SubtitleProps> = (props) => (
|
|
<h2 className={`text-2xl ${props.className || ""}`}>{props.children}</h2>
|
|
);
|