flowbite-svelte
Version:
Flowbite components for Svelte
29 lines (28 loc) • 937 B
TypeScript
import { SvelteComponentTyped } from "svelte";
import type { HTMLAttributes } from 'svelte/elements';
declare const __propDef: {
props: HTMLAttributes<HTMLHeadingElement> & {
tag?: "h1" | "h2" | "h3" | "h4" | "h5" | "h6";
color?: string;
customSize?: string;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
};
};
export type HeadingProps = typeof __propDef.props;
export type HeadingEvents = typeof __propDef.events;
export type HeadingSlots = typeof __propDef.slots;
/**
* [Go to docs](https://flowbite-svelte.com/)
* ## Props
* @prop export let tag: NonNullable<$$Props['tag']> = 'h1';
* @prop export let color: $$Props['color'] = 'text-gray-900 dark:text-white';
* @prop export let customSize: $$Props['customSize'] = '';
*/
export default class Heading extends SvelteComponentTyped<HeadingProps, HeadingEvents, HeadingSlots> {
}
export {};