import { ThemeSize } from "../../theme/types.js"; import { AvatarCompactProps, AvatarImageEmits, AvatarUi } from "@soybeanjs/headless/avatar"; import { ClassValue } from "@soybeanjs/headless/types"; //#region src/components/avatar/types.d.ts /** * Properties for the Avatar component. */ interface AvatarProps extends AvatarCompactProps { /** * root class */ class?: ClassValue; /** * Visual size of the component. */ size?: ThemeSize; /** * Per-slot class overrides for the component. */ ui?: Partial; } /** * Events for the Avatar component. */ type AvatarEmits = AvatarImageEmits; //#endregion export { AvatarEmits, AvatarProps };