UNPKG

@ducor/form

Version:
6 lines (5 loc) 388 B
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; const Label = ({ id, label, withAsterisk }) => { return (_jsxs("label", { className: 'block text-sm font-semibold leading-6 text-gray-600 dark:text-gray-200 whitespace-nowrap', htmlFor: id, children: [label, " ", withAsterisk && _jsx("span", { className: 'text-red-500', children: "*" })] })); }; export default Label;