flowbite-svelte
Version:
Flowbite components for Svelte
27 lines (26 loc) • 856 B
TypeScript
import { SvelteComponentTyped } from "svelte";
import type { HTMLAttributes } from 'svelte/elements';
declare const __propDef: {
props: HTMLAttributes<HTMLElement> & {
color?: string;
secondaryClass?: string;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
};
};
export type SecondaryProps = typeof __propDef.props;
export type SecondaryEvents = typeof __propDef.events;
export type SecondarySlots = typeof __propDef.slots;
/**
* [Go to docs](https://flowbite-svelte.com/)
* ## Props
* @prop export let color: $$Props['color'] = 'text-gray-500 dark:text-gray-400';
* @prop export let secondaryClass: $$Props['secondaryClass'] = 'font-semibold';
*/
export default class Secondary extends SvelteComponentTyped<SecondaryProps, SecondaryEvents, SecondarySlots> {
}
export {};