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>
}