UNPKG

@olleemilsson/flowbite-react

Version:

<div align="center"> <h1>:construction: flowbite-react (unreleased) :construction:</h1> <p> <a href="https://flowbite-react.com"> <img alt="Flowbite - Tailwind CSS components" width="350" src=".github/assets/flowbite-react-github.png"> <

25 lines (24 loc) 562 B
import type { ComponentProps, FC, PropsWithChildren } from 'react'; export interface FlowbiteCardTheme { base: string; children: string; horizontal: { off: string; on: string; }; href: string; img: { base: string; horizontal: { off: string; on: string; }; }; } export interface CardProps extends PropsWithChildren<ComponentProps<'div'>> { horizontal?: boolean; href?: string; imgAlt?: string; imgSrc?: string; } export declare const Card: FC<CardProps>;