svelte-multiselect
Version:
Svelte multi-select component
9 lines (8 loc) • 309 B
TypeScript
import type { HTMLAttributes } from 'svelte/elements';
import { type IconName } from './icons';
type $$ComponentProps = HTMLAttributes<SVGSVGElement> & {
icon: IconName;
};
declare const Icon: import("svelte").Component<$$ComponentProps, {}, "">;
type Icon = ReturnType<typeof Icon>;
export default Icon;