UNPKG

@premieroctet/next-admin

Version:

Next-Admin provides a customizable and turnkey admin dashboard for applications built with Next.js and powered by the Prisma ORM. It aims to simplify the development process by providing a turnkey admin system that can be easily integrated into your proje

8 lines 388 B
import * as RadixCheckbox from "@radix-ui/react-checkbox"; import { ComponentProps } from "react"; type Props = ComponentProps<typeof RadixCheckbox.Root> & { indeterminate?: boolean; }; declare const Checkbox: ({ indeterminate, className, checked, onChange, ...props }: Props) => import("react/jsx-runtime").JSX.Element; export default Checkbox; //# sourceMappingURL=Checkbox.d.ts.map