carbon-components-svelte
Version:
Svelte implementation of the Carbon Design System
14 lines (10 loc) • 307 B
TypeScript
import { SvelteComponentTyped } from "svelte";
export type SectionLevel = 1 | 2 | 3 | 4 | 5 | 6;
export type HeadingProps = {
children?: (this: void) => void;
};
export default class Heading extends SvelteComponentTyped<
HeadingProps,
Record<string, any>,
{ default: Record<string, never> }
> {}