메인 콘텐츠로 건너뛰기
Header
사용자가 여러 옵션 중 여러 값을 선택해야 할 때 사용됩니다.
  • Usage
  • Props
import { Checkbox } from "twenty-ui/display";

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"
    />
  );
};