ui-ingredients
Version:
Headless component library for Svelte powered by zag
7 lines (6 loc) • 368 B
TypeScript
import type { HtmlIngredientProps } from '../types.js';
export interface ColorPickerPositionerProps extends HtmlIngredientProps<'div', HTMLDivElement> {
}
declare const ColorPickerPositioner: import("svelte").Component<ColorPickerPositionerProps, {}, "ref">;
type ColorPickerPositioner = ReturnType<typeof ColorPickerPositioner>;
export default ColorPickerPositioner;