UNPKG

m3-svelte

Version:
15 lines (14 loc) 434 B
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 Tabs: import("svelte").Component<$$ComponentProps, {}, "tab">; type Tabs = ReturnType<typeof Tabs>; export default Tabs;