flowbite-svelte-blocks
Version:
Flowbite blocks components for Svelte
25 lines (24 loc) • 553 B
TypeScript
interface Item {
time?: string;
href?: string;
title?: string;
}
interface Props {
item: Item;
class?: string;
pClass?: string;
h3Class?: string;
aClass?: string;
}
/**
* [Go to docs](https://flowbite-svelte-blocks.codewithshin.com/)
* ## Props
* @props: item: any;
* @props:class: string;
* @props:pClass: any;
* @props:h3Class: any;
* @props:aClass: any;
*/
declare const ScheduleItem: import("svelte").Component<Props, {}, "">;
type ScheduleItem = ReturnType<typeof ScheduleItem>;
export default ScheduleItem;