flowbite-svelte-blocks
Version:
Flowbite blocks components for Svelte
23 lines (22 loc) • 570 B
TypeScript
import type { Snippet } from 'svelte';
interface Props {
children: Snippet;
h2?: Snippet;
img?: Snippet;
ctatype?: 'default' | 'image' | 'heading' | 'none';
h2Class?: string;
class?: string;
}
/**
* [Go to docs](https://flowbite-svelte-blocks.codewithshin.com/)
* ## Props
* @props: children: any;
* @props:h2: any;
* @props:img: any;
* @props:ctatype: any = 'default';
* @props:h2Class: any;
* @props:class: string;
*/
declare const Cta: import("svelte").Component<Props, {}, "">;
type Cta = ReturnType<typeof Cta>;
export default Cta;