Files
MermsFirstOffice/src/components/Label.jsx
T
CHIEFSOFT\ameye 7e28fc8f51 first commit
2025-07-21 05:51:52 -04:00

8 lines
270 B
React

import React from 'react'
export default function Label({name, htmlfor, error}) {
return (
<label className='text-black font-semibold flex gap-1 items-center' htmlFor={htmlfor}>{name} {error && <span className='text-red-500 text-sm'>{error}</span>}</label>
)
}