@project-jade-garden/reka-ui
Version:
Reka UI anatomy slots for headless design
20 lines (19 loc) • 703 B
text/typescript
import { SVATraits } from 'jade-garden';
/**
* **Avatar**
* @description An image element with a fallback for representing the user.
* @see [source](https://reka-ui.com/docs/components/avatar#anatomy)
*/
export declare const slots: readonly ["root", "fallback", "image"];
/**
* **Avatar**
* @description An image element with a fallback for representing the user.
* @see [source](https://reka-ui.com/docs/components/avatar#anatomy)
*/
export type Slots = (typeof slots)[number];
/**
* **Avatar**
* @description An image element with a fallback for representing the user.
* @see [source](https://reka-ui.com/docs/components/avatar#api-reference)
*/
export type Traits = SVATraits<Slots, {}>;