UNPKG

carbon-components-svelte

Version:
27 lines (20 loc) 519 B
import { SvelteComponentTyped } from "svelte"; import type { SvelteHTMLElements } from "svelte/elements"; type $RestProps = SvelteHTMLElements["svg"]; type $Props = { /** * @default 16 */ size?: number; /** * @default undefined */ title?: undefined; [key: `data-${string}`]: unknown; }; export type IncompleteProps = Omit<$RestProps, keyof $Props> & $Props; export default class Incomplete extends SvelteComponentTyped< IncompleteProps, Record<string, any>, Record<string, never> > {}