UNPKG

norma-library

Version:

Olos/Norma-DS. Design System based on Material UI, developed with TypeScript and Styled Components to create reusable and consistent components in web applications.

13 lines 467 B
import { __assign, __rest } from "tslib"; import React from 'react'; import { Avatar as MuiVatar } from '@mui/material'; import { styled } from '@mui/material/styles'; var AvatarStyled = styled(MuiVatar)({ textTransform: 'none', color: 'currentcolor', }); export var Avatar = function (_a) { var src = _a.src, props = __rest(_a, ["src"]); return (React.createElement(AvatarStyled, __assign({ src: src }, props))); }; //# sourceMappingURL=Avatar.js.map