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