mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 02:11:05 +00:00
11 lines
259 B
TypeScript
11 lines
259 B
TypeScript
import type { SvelteComponentTyped } from "svelte";
|
|
|
|
export type SectionLevel = 1 | 2 | 3 | 4 | 5 | 6;
|
|
|
|
export interface HeadingProps {}
|
|
|
|
export default class Heading extends SvelteComponentTyped<
|
|
HeadingProps,
|
|
Record<string, any>,
|
|
{ default: {} }
|
|
> {}
|