UNPKG

flowbite-svelte

Version:

Flowbite components for Svelte

22 lines (21 loc) 568 B
import { type CardProps } from ".."; /** * [Go to docs](https://flowbite-svelte.com/) * ## Type * [CardProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L355) * ## Props * @prop children * @prop color = "gray" * @prop horizontal = false * @prop shadow = "md" * @prop reverse = false * @prop img * @prop size = "sm" * @prop class: className * @prop classes * @prop imgClass * @prop ...restProps */ declare const Card: import("svelte").Component<CardProps, {}, "">; type Card = ReturnType<typeof Card>; export default Card;