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