UNPKG

svelte-multiselect

Version:
9 lines (8 loc) 230 B
import { type IconName } from './icons'; interface Props { icon: IconName; [key: string]: unknown; } declare const Icon: import("svelte").Component<Props, {}, "">; type Icon = ReturnType<typeof Icon>; export default Icon;