Used when a user needs to select multiple values from several options.
import { Checkbox } from "twenty-ui"; export const MyComponent = () => { return ( <Checkbox checked={true} indeterminate={false} onChange={() => console.log("onChange function fired")} onCheckedChange={() => console.log("onCheckedChange function fired")} variant="primary" size="small" shape="squared" /> ); };
As an open-source company, we welcome contributions through Github. Help us keep it up-to-date, accurate, and easy to understand by getting involved and sharing your ideas!