@unicity/design-system
Version:
A comprehensive React component library built on Material-UI with advanced theming capabilities including neumorphism design support
6 lines • 490 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { StyledAvatar } from './Avatar.style';
export const Avatar = ({ src, alt, size = 'medium', variant = 'circular', color = 'default', bordered = false, clickable = false, onClick, children, ...props }) => {
return (_jsx(StyledAvatar, { src: src, alt: alt, variant: variant, size: size, color: color, bordered: bordered, clickable: clickable, onClick: onClick, ...props, children: children }));
};
//# sourceMappingURL=Avatar.js.map