mirror of
https://github.com/utopia-os/utopia-ui.git
synced 2026-03-01 12:44:17 +00:00
* fix labels * more lables * and the rest of the lables * updated snapshots * fix linting
10 lines
256 B
TypeScript
10 lines
256 B
TypeScript
export const InputLabel = ({ label }: { label: string }) => {
|
|
return (
|
|
<label className='tw:label tw:pb-1'>
|
|
<span className='tw:block tw:text-sm tw:font-medium tw:text-base-content/50 tw:mb-1'>
|
|
{label}:
|
|
</span>
|
|
</label>
|
|
)
|
|
}
|