UNPKG

flowbite-qwik

Version:

Official Qwik components built for Flowbite and Tailwind CSS

7 lines (6 loc) 295 B
import { PropsOf } from '@builder.io/qwik'; type JumbotronProps = Omit<PropsOf<'div'>, 'align'> & { align?: 'center' | 'left' | 'right'; }; export declare const Jumbotron: ({ children, class: classNames, align, ...attrs }: JumbotronProps) => import("@builder.io/qwik").JSXOutput; export {};