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