ui-ingredients
Version:
Headless component library for Svelte powered by zag
9 lines (8 loc) • 513 B
TypeScript
import type { ChannelInputProps } from '@zag-js/color-picker';
import type { Merge } from 'type-fest';
import type { HtmlIngredientProps } from '../types.js';
export interface ColorPickerChannelInputProps extends Merge<HtmlIngredientProps<'input', HTMLInputElement>, ChannelInputProps> {
}
declare const ColorPickerChannelInput: import("svelte").Component<ColorPickerChannelInputProps, {}, "ref">;
type ColorPickerChannelInput = ReturnType<typeof ColorPickerChannelInput>;
export default ColorPickerChannelInput;