flowbite-svelte-blocks
Version:
Flowbite blocks components for Svelte
15 lines (14 loc) • 388 B
TypeScript
import type { Snippet } from 'svelte';
interface Props {
children: Snippet;
class?: string;
}
/**
* [Go to docs](https://flowbite-svelte-blocks.codewithshin.com/)
* ## Props
* @props: children: any;
* @props:class: string;
*/
declare const PricingCard: import("svelte").Component<Props, {}, "">;
type PricingCard = ReturnType<typeof PricingCard>;
export default PricingCard;