UNPKG

flowbite-qwik

Version:

Official Qwik components built for Flowbite and Tailwind CSS

10 lines (9 loc) 280 B
import { PropsOf } from '@builder.io/qwik'; type ListProps = PropsOf<'ul'> & PropsOf<'ol'> & { ordered?: boolean; unstyled?: boolean; nested?: boolean; horizontal?: boolean; }; export declare const List: import("@builder.io/qwik").Component<ListProps>; export {};