flowbite-svelte
Version:
Flowbite components for Svelte
18 lines (17 loc) • 493 B
TypeScript
import type { AnchorProps } from "../../types";
/**
* [Go to docs](https://flowbite-svelte.com/)
* ## Type
* [AnchorProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L1848)
* ## Props
* @prop children
* @prop color = "primary"
* @prop asButton = false
* @prop onclick
* @prop href = "#"
* @prop class: className
* @prop ...restProps
*/
declare const A: import("svelte").Component<AnchorProps, {}, "">;
type A = ReturnType<typeof A>;
export default A;