1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-20 03:59:36 +02:00
flame/client/src/components/UI/Headlines/SettingsHeadline/SettingsHeadline.tsx

10 lines
228 B
TypeScript
Raw Normal View History

2022-11-30 20:46:28 +00:00
import classes from './SettingsHeadline.module.css';
interface Props {
text: string;
}
export const SettingsHeadline = (props: Props): JSX.Element => {
return <h2 className={classes.SettingsHeadline}>{props.text}</h2>;
};