UNPKG

material-you-react

Version:

Material You: Material You (M3) Design system and its components for simple integration with Next.Js or other react-based frameworks

10 lines (9 loc) 283 B
import React from "react"; type CheckboxProps = { value?: boolean | null | undefined; isError?: boolean; onChange?: (value?: boolean | null) => void; disabled?: boolean; }; declare const Checkbox: (props: CheckboxProps) => React.JSX.Element; export default Checkbox;