UNPKG

compote-ui

Version:

An opinionated UI component library for Svelte, built on top of [Ark UI](https://ark-ui.com) with additional components and features not available in the core Ark UI library.

12 lines (11 loc) 348 B
import type { CheckboxGroupBaseProps } from '@ark-ui/svelte/checkbox'; export interface CheckboxGroupProps<T = string | number> extends Omit<CheckboxGroupBaseProps, 'value'> { label?: string; description?: string; items: { value: T; label: string; }[]; value: T[]; orientation?: 'horizontal' | 'vertical'; }