UNPKG

compote-ui

Version:

An opinionated UI component library for Svelte, built on top of [Ark UI](https://ark-ui.com) with additional components and features not available in the core Ark UI library.

9 lines (8 loc) 302 B
import { Avatar } from '@ark-ui/svelte/avatar'; import type { AvatarProps } from './avatar.types'; type $$ComponentProps = AvatarProps & { class?: string; }; declare const Avatar: import("svelte").Component<$$ComponentProps, {}, "">; type Avatar = ReturnType<typeof Avatar>; export default Avatar;