flowbite-svelte
Version:
Flowbite components for Svelte
25 lines (24 loc) • 622 B
TypeScript
import { type AvatarProps } from "..";
/**
* [Go to docs](https://flowbite-svelte.com/)
* ## Type
* [AvatarProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L240)
* ## Props
* @prop children
* @prop indicator
* @prop src
* @prop href
* @prop target
* @prop cornerStyle = "circular"
* @prop border = false
* @prop stacked = false
* @prop dot
* @prop class: className
* @prop alt
* @prop size = "md"
* @prop onclick
* @prop ...restProps
*/
declare const Avatar: import("svelte").Component<AvatarProps, {}, "">;
type Avatar = ReturnType<typeof Avatar>;
export default Avatar;