flowbite-svelte
Version:
Flowbite components for Svelte
14 lines (13 loc) • 486 B
TypeScript
import type { CardPlaceholderProps } from "../types";
/**
* [Go to docs](https://flowbite-svelte.com/)
* ## Type
* [CardPlaceholderProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L1426)
* ## Props
* @prop size = "sm"
* @prop class: className
* @prop ...restProps
*/
declare const CardPlaceholder: import("svelte").Component<CardPlaceholderProps, {}, "">;
type CardPlaceholder = ReturnType<typeof CardPlaceholder>;
export default CardPlaceholder;