flowbite-qwik
Version:
Official Qwik components built for Flowbite and Tailwind CSS
11 lines (10 loc) • 364 B
TypeScript
import { Component, PropsOf } from '@builder.io/qwik';
import { IconProps } from 'flowbite-qwik-icons';
type LinkProps = PropsOf<'a'> & PropsOf<'button'> & {
underline?: boolean;
tag?: Component<LinkProps> | 'button';
iconRight?: Component<IconProps>;
iconLeft?: Component<IconProps>;
};
export declare const Link: Component<LinkProps>;
export {};