UNPKG

ui-ingredients

Version:

Headless component library for Svelte powered by zag

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