flowbite-svelte
Version:
Flowbite components for Svelte
15 lines (14 loc) • 450 B
TypeScript
import type { HeadingProps } from "../../types";
/**
* [Go to docs](https://flowbite-svelte.com/)
* ## Type
* [HeadingProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L1893)
* ## Props
* @prop children
* @prop tag = "h1"
* @prop class: className
* @prop ...restProps
*/
declare const Heading: import("svelte").Component<HeadingProps, {}, "">;
type Heading = ReturnType<typeof Heading>;
export default Heading;