@melio-ui/checkbox
v0.0.3
Published
### 기본
Downloads
4
Readme
Checkbox
기본
<Checkbox.Root>
<Checkbox.Indicator>
<Checkbox.Icon />
</Checkbox.Indicator>
<Checkbox.Label>체크박스</Checkbox.Label>
</Checkbox.Root>
Custom
<Checkbox.Root>
<Checkbox.Indicator>
{(checked: boolean) => {
if (checked) return <CheckedUserIcon />;
return <UncheckedUserIcon />;
}}
</Checkbox.Indicator>
<Checkbox.Label>체크박스</Checkbox.Label>
</Checkbox.Root>
<Checkbox.Root>
<Checkbox.Indicator>
<Checkbox.Icon
checkedIcon={<CheckedUserIcon />}
uncheckedIcon={<UncheckedUserIcon />}
/>
</Checkbox.Indicator>
<Checkbox.Label>체크박스</Checkbox.Label>
</Checkbox.Root>
CheckboxGroup
<Checkbox.Group>
<Checkbox.Root value={0}>
<Checkbox.Indicator>
<Checkbox.Icon />
</Checkbox.Indicator>
<Checkbox.Label>체크박스1</Checkbox.Label>
</Checkbox.Root>
<Checkbox.Root value={1}>
<Checkbox.Indicator>
<Checkbox.Icon />
</Checkbox.Indicator>
<Checkbox.Label>체크박스2</Checkbox.Label>
</Checkbox.Root>
<Checkbox.Root value={2}>
<Checkbox.Indicator>
<Checkbox.Icon />
</Checkbox.Indicator>
<Checkbox.Label>체크박스3</Checkbox.Label>
</Checkbox.Root>
</Checkbox.Group>