1
0
mirror of https://github.com/kremalicious/asi-calculator.git synced 2025-01-09 05:07:21 +01:00
asi-calculator/components/Label/Label.tsx

6 lines
170 B
TypeScript
Raw Normal View History

2024-03-31 15:24:07 +02:00
import styles from './Label.module.css'
export function Label({ children }: { children: React.ReactNode }) {
return <span className={styles.label}>{children}</span>
}