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) • 471 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 TabsLink: import("svelte").Component<$$ComponentProps, {}, "">;
type TabsLink = ReturnType<typeof TabsLink>;
export default TabsLink;