flowbite-qwik
Version:
Official Qwik components built for Flowbite and Tailwind CSS
19 lines (18 loc) • 498 B
TypeScript
import { ClassList, Component, JSXOutput, PropsOf } from '@builder.io/qwik';
import type { LinkProps } from '@builder.io/qwik-city';
type CardTheme = {
root?: ClassList;
image?: ClassList;
content?: ClassList;
};
type CardProps = PropsOf<'div'> & {
horizontal?: boolean;
href?: string;
tag?: Component<LinkProps> | string;
imgAlt?: string;
imgSrc?: string;
imgAs?: JSXOutput;
theme?: CardTheme;
};
export declare const Card: Component<CardProps>;
export {};