m3-svelte
Version:
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;