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.
15 lines (14 loc) • 466 B
TypeScript
import type { IconifyIcon } from "@iconify/types";
import type { HTMLInputAttributes } from "svelte/elements";
type $$ComponentProps = {
secondary?: boolean;
tab: string;
items: {
icon?: IconifyIcon;
name: string;
value: string;
}[];
} & HTMLInputAttributes;
declare const VariableTabs: import("svelte").Component<$$ComponentProps, {}, "tab">;
type VariableTabs = ReturnType<typeof VariableTabs>;
export default VariableTabs;