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