@3xpo/svelte-colour-picker
Version:
A highly customizable color picker component library
21 lines (20 loc) • 703 B
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
/** indicator position in % */ pos: {
x: number;
y: number;
};
/** indicator whether the selected color is light or dark */ isDark?: boolean | undefined;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type PickerIndicatorProps = typeof __propDef.props;
export type PickerIndicatorEvents = typeof __propDef.events;
export type PickerIndicatorSlots = typeof __propDef.slots;
export default class PickerIndicator extends SvelteComponentTyped<PickerIndicatorProps, PickerIndicatorEvents, PickerIndicatorSlots> {
}
export {};