import { CheckIcon } from "@heroicons/react/24/outline"; import clsx from "clsx"; import type { ComponentProps, ReactNode } from "react"; import { Checkbox as BaseCheckbox } from "react-aria-components"; type Props = Omit, "children"> & { children: ReactNode; }; export const Checkbox = ({ className, children, ...props }: Props) => (
{children}
);