UNPKG

flowbite-qwik

Version:

Official Qwik components built for Flowbite and Tailwind CSS

8 lines (7 loc) 266 B
import { PropsOf } from '@builder.io/qwik'; export type HeadingTag = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6'; type HeadingProps = PropsOf<'h1'> & { tag?: HeadingTag; }; export declare const Heading: import("@builder.io/qwik").Component<HeadingProps>; export {};