@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) • 353 B
JavaScript
//#region src/avatar/helpers.ts
/** Gets initials from the name for the Avatar. */
function defaultGetInitials(name = "") {
const [first = "", last = ""] = name.split(" ");
return `${first.charAt(0)}${last.charAt(0)}`.toUpperCase();
}
//#endregion
export { defaultGetInitials };
globalThis.__vuiVersion__ = "5.3.1"
//# sourceMappingURL=helpers.js.map