0.0.3 • Published 12 months ago

@melio-ui/checkbox v0.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
12 months ago

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>
0.0.3

12 months ago

0.0.2

1 year ago

0.0.1

1 year ago

0.0.0

1 year ago