Buckets:
| import { Checkbox as Kobalte } from "@kobalte/core/checkbox" | |
| import { Show, splitProps, type JSX } from "solid-js" | |
| import type { ComponentProps } from "solid-js" | |
| import "./checkbox-v2.css" | |
| export interface CheckboxV2Props extends ComponentProps<typeof Kobalte> { | |
| label: JSX.Element | |
| description?: JSX.Element | |
| hideLabel?: boolean | |
| } | |
| export function CheckboxV2(props: CheckboxV2Props) { | |
| const [local, others] = splitProps(props, ["class", "classList", "label", "description", "hideLabel"]) | |
| return ( | |
| <Kobalte | |
| {...others} | |
| data-slot="checkbox-v2" | |
| classList={{ | |
| ...local.classList, | |
| [local.class ?? ""]: !!local.class, | |
| }} | |
| > | |
| <div data-slot="checkbox-v2-row"> | |
| <Kobalte.Input data-slot="checkbox-v2-input" /> | |
| <div data-slot="checkbox-v2-control-stack"> | |
| <Kobalte.Control data-slot="checkbox-v2-control"> | |
| <Kobalte.Indicator data-slot="checkbox-v2-indicator"> | |
| <svg | |
| class="checkbox-v2-icon checkbox-v2-icon--check" | |
| width="16" | |
| height="16" | |
| viewBox="0 0 16 16" | |
| fill="none" | |
| xmlns="http://www.w3.org/2000/svg" | |
| aria-hidden="true" | |
| > | |
| <path d="M3.53564 8.17857L6.39279 11.75L12.4642 4.25" stroke="#FAFAFA" stroke-width="1" /> | |
| </svg> | |
| <svg | |
| class="checkbox-v2-icon checkbox-v2-icon--minus" | |
| width="16" | |
| height="16" | |
| viewBox="0 0 16 16" | |
| fill="none" | |
| xmlns="http://www.w3.org/2000/svg" | |
| aria-hidden="true" | |
| > | |
| <path d="M12.75 8H3.25" stroke="#FAFAFA" stroke-linejoin="round" stroke-width="1" /> | |
| </svg> | |
| </Kobalte.Indicator> | |
| </Kobalte.Control> | |
| </div> | |
| <Kobalte.Label data-slot="checkbox-v2-label" classList={{ "sr-only": local.hideLabel }}> | |
| <div data-slot="checkbox-v2-text"> | |
| <span data-slot="checkbox-v2-label-text">{local.label}</span> | |
| <Show when={local.description}> | |
| {(description) => <span data-slot="checkbox-v2-description">{description()}</span>} | |
| </Show> | |
| </div> | |
| </Kobalte.Label> | |
| </div> | |
| <Kobalte.ErrorMessage data-slot="checkbox-v2-error" /> | |
| </Kobalte> | |
| ) | |
| } | |
Xet Storage Details
- Size:
- 2.4 kB
- Xet hash:
- 9c429084cfa7d055dccdc01c8e886bf11a7ec7ea951ac15edbb7250ac883f43c
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.