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