flowbite-qwik
Version:
Official Qwik components built for Flowbite and Tailwind CSS
13 lines (12 loc) • 349 B
TypeScript
import { Component, PropsOf } from '@builder.io/qwik';
import type { LinkProps } from '@builder.io/qwik-city';
type SidebarLogoProps = PropsOf<'a'> & {
name?: string;
logo?: {
url: string;
alt?: string;
};
tag?: Component<LinkProps> | 'a';
};
export declare const SidebarLogo: Component<SidebarLogoProps>;
export {};