@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
19 lines (18 loc) • 493 B
JavaScript
"use client";
import { TITLE } from "../style.mjs";
import Icon from "./Color.mjs";
import { jsx } from "react/jsx-runtime";
import { IconAvatar } from "@lobehub/icons";
//#region src/icons/NextAuth/components/Avatar.tsx
const Avatar = ({ background, ...rest }) => {
return /* @__PURE__ */ jsx(IconAvatar, {
Icon,
"aria-label": TITLE,
background: background || "#000",
iconMultiple: .7,
...rest
});
};
//#endregion
export { Avatar as default };
//# sourceMappingURL=Avatar.mjs.map