@veracity/vui
Version:
Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.
11 lines (10 loc) • 526 B
TypeScript
import { SystemProps } from "../system/system.js";
import { VuiComponent } from "../core/vui.js";
import { AvatarProps } from "./avatar.types.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, AvatarBase };
//# sourceMappingURL=avatar.d.ts.map