19 lines
479 B
JavaScript
19 lines
479 B
JavaScript
import { jsx } from "react/jsx-runtime";
|
|
import classNames from "classnames";
|
|
function Checkbox(props) {
|
|
return /* @__PURE__ */ jsx(
|
|
"input",
|
|
{
|
|
type: "checkbox",
|
|
...props,
|
|
className: classNames(
|
|
"rounded-sm dark:bg-gray-900 border-gray-300 dark:border-gray-700 text-indigo-600 shadow-xs focus:ring-indigo-500 dark:focus:ring-indigo-600 dark:focus:ring-offset-gray-800",
|
|
props.className
|
|
)
|
|
}
|
|
);
|
|
}
|
|
export {
|
|
Checkbox as C
|
|
};
|