Files
project-gifuu/frontend/source/components/inputs/Label.tsx
T

15 lines
328 B
TypeScript
Raw Normal View History

2026-05-23 17:17:56 -07:00
import './styles/Label.css'
interface PropsForInputLabel {
for: string
label: string
}
export default function InputLabel(p: PropsForInputLabel) {
return (
<label htmlFor={p.for} className="input-label animation-scroll-in" aria-label={p.label}>
{p.label.toUpperCase()}
</label>
)
}