UNPKG

ui-ingredients

Version:

Headless component library for Svelte powered by zag

8 lines (7 loc) 482 B
import type { ChannelInputProps } from '@zag-js/color-picker'; import type { Assign, HtmlIngredientProps } from '../types.js'; export interface ColorPickerChannelInputProps extends Assign<HtmlIngredientProps<'input', HTMLInputElement>, ChannelInputProps> { } declare const ColorPickerChannelInput: import("svelte").Component<ColorPickerChannelInputProps, {}, "ref">; type ColorPickerChannelInput = ReturnType<typeof ColorPickerChannelInput>; export default ColorPickerChannelInput;