UNPKG

flowbite-qwik

Version:

Official Qwik components built for Flowbite and Tailwind CSS

8 lines (7 loc) 247 B
import { Component, PropsOf } from '@builder.io/qwik'; import { IconProps } from 'flowbite-qwik-icons'; type ListItemProps = PropsOf<'li'> & { icon?: Component<IconProps>; }; export declare const ListItem: Component<ListItemProps>; export {};