UNPKG

ui-ingredients

Version:

Headless component library for Svelte powered by zag

9 lines (8 loc) 414 B
import type { ColorFormat } from '@zag-js/color-picker'; import type { HtmlIngredientProps } from '../types.js'; export interface ColorPickerViewProps extends HtmlIngredientProps<'div', HTMLDivElement> { format: ColorFormat; } declare const ColorPickerView: import("svelte").Component<ColorPickerViewProps, {}, "ref">; type ColorPickerView = ReturnType<typeof ColorPickerView>; export default ColorPickerView;