UNPKG

@veracity/vui

Version:

Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.

12 lines (11 loc) 567 B
import { SystemProps } from "../system/system.js"; import { VuiComponent } from "../core/vui.js"; import { AvatarProps } from "./avatar.types.js"; import "../index.js"; //#region src/avatar/avatar.d.ts declare const AvatarBase: import("styled-components").StyledComponent<"span", import("styled-components").DefaultTheme, SystemProps, never>; /** Displays user data, such as name initials or profile image. */ declare const Avatar: VuiComponent<"span", AvatarProps>; //#endregion export { Avatar, Avatar as default, AvatarBase }; //# sourceMappingURL=avatar.d.ts.map