flowbite-qwik
Version:
Official Qwik components built for Flowbite and Tailwind CSS
11 lines (10 loc) • 353 B
TypeScript
import { Component, PropsOf } from '@builder.io/qwik';
import type { LinkProps } from '@builder.io/qwik-city';
export type FooterBrandProps = PropsOf<'a'> & PropsOf<'img'> & {
alt?: string;
href?: string;
name?: string;
src: string;
tag?: Component<LinkProps> | 'a';
};
export declare const FooterBrand: Component<FooterBrandProps>;