m3-svelte
Version:
M3 Svelte implements the Material 3 design system in Svelte. See the [website](https://kendell.dev/m3-svelte/) for demos and usage instructions.
13 lines (12 loc) • 367 B
TypeScript
import type { IconifyIcon } from "@iconify/types";
type $$ComponentProps = {
options: {
label: string;
value: string;
icon?: IconifyIcon;
}[];
chosenOptions: string[];
};
declare const ChipChooser: import("svelte").Component<$$ComponentProps, {}, "">;
type ChipChooser = ReturnType<typeof ChipChooser>;
export default ChipChooser;