@wulperstudio/cms
Version:
Wulper Studio Library Components CMS
22 lines • 744 B
JavaScript
import React from 'react';
import { ContainerDescriptionTitle, ContainerImg, Paragraph1, ParagraphTitle2 } from './styled';
import { AvatarV2 } from '../AvatarV2';
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
var AvatarDrawer = function AvatarDrawer(props) {
return /*#__PURE__*/_jsxs(ContainerImg, {
children: [/*#__PURE__*/_jsx(AvatarV2, {
children: props.title
}), /*#__PURE__*/_jsxs(ContainerDescriptionTitle, {
children: [/*#__PURE__*/_jsx(Paragraph1, {
variant: "h5",
as: "p",
children: props.title
}), /*#__PURE__*/_jsx(ParagraphTitle2, {
variant: "h6",
as: "p",
children: props.company
})]
})]
});
};
export default AvatarDrawer;