UNPKG

carbon-components-svelte

Version:
26 lines (21 loc) 631 B
import type { SvelteComponentTyped } from "svelte"; import type { SvelteHTMLElements } from "svelte/elements"; type RestProps = SvelteHTMLElements["div"]; export interface StructuredListSkeletonProps extends RestProps { /** * Specify the number of rows * @default 5 */ rows?: number; [key: `data-${string}`]: any; } export default class StructuredListSkeleton extends SvelteComponentTyped< StructuredListSkeletonProps, { click: WindowEventMap["click"]; mouseover: WindowEventMap["mouseover"]; mouseenter: WindowEventMap["mouseenter"]; mouseleave: WindowEventMap["mouseleave"]; }, {} > {}