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