flowbite-svelte
Version:
Flowbite components for Svelte
23 lines (22 loc) • 595 B
TypeScript
import type { SpanProps } from "../../types";
/**
* [Go to docs](https://flowbite-svelte.com/)
* ## Type
* [SpanProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L2033)
* ## Props
* @prop children
* @prop class: className
* @prop italic
* @prop underline
* @prop linethrough
* @prop uppercase
* @prop gradient
* @prop highlight
* @prop decoration
* @prop decorationColor
* @prop decorationThickness
* @prop ...restProps
*/
declare const Span: import("svelte").Component<SpanProps, {}, "">;
type Span = ReturnType<typeof Span>;
export default Span;