UNPKG

carbon-components-svelte

Version:
28 lines (22 loc) 691 B
import { SvelteComponentTyped } from "svelte"; import type { SvelteHTMLElements } from "svelte/elements"; type $RestProps = SvelteHTMLElements["div"]; type $Props = { /** * Specify the number of tabs to render * @default 4 */ count?: number; [key: `data-${string}`]: unknown; }; export type TabsVerticalSkeletonProps = Omit<$RestProps, keyof $Props> & $Props; export default class TabsVerticalSkeleton extends SvelteComponentTyped< TabsVerticalSkeletonProps, { click: WindowEventMap["click"]; mouseenter: WindowEventMap["mouseenter"]; mouseleave: WindowEventMap["mouseleave"]; mouseover: WindowEventMap["mouseover"]; }, Record<string, never> > {}