Files
web/components/MyPages/Blocks/Overview/Stats/Title/index.tsx
2024-04-05 08:43:58 +02:00

6 lines
168 B
TypeScript

import styles from "./title.module.css"
export default function Title({ children }: React.PropsWithChildren) {
return <h4 className={styles.title}>{children}</h4>
}