UNPKG

flowbite-qwik

Version:

Official Qwik components built for Flowbite and Tailwind CSS

10 lines (9 loc) 327 B
import { Component, PropsOf } from '@builder.io/qwik'; import type { LinkProps } from '@builder.io/qwik-city'; export interface CopyrightProps extends PropsOf<'div'> { by: string; href?: string; year?: number; tag?: Component<LinkProps> | 'a'; } export declare const FooterCopyright: Component<CopyrightProps>;