UNPKG

ui-ingredients

Version:

Headless component library for Svelte powered by zag

8 lines (7 loc) 402 B
import type { HtmlIngredientProps } from '../types.js'; export interface ColorPickerValueSwatchProps extends HtmlIngredientProps<'div', HTMLDivElement> { respectAlpha?: boolean; } declare const ColorPickerValueSwatch: import("svelte").Component<ColorPickerValueSwatchProps, {}, "ref">; type ColorPickerValueSwatch = ReturnType<typeof ColorPickerValueSwatch>; export default ColorPickerValueSwatch;