Files
web/components/MyPages/Blocks/Overview/Stats/Label/index.tsx
2024-05-30 17:56:56 +02:00

6 lines
172 B
TypeScript

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