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