UNPKG

@crossed/ui

Version:

A universal & performant styling library for React Native, Next.js & React

12 lines (11 loc) 383 B
import { jsx } from "react/jsx-runtime"; import { composeStyles } from "@crossed/styled"; import { form } from "../../styles/form"; const Label = (props) => { const { disabled, focus, hover, style, ...other } = props; return /* @__PURE__ */ jsx("label", { ...other, ...composeStyles(form.label, style).className() }); }; export { Label }; //# sourceMappingURL=Label.web.js.map