@atlaskit/profilecard
Version:
A React component to display a card with user information.
11 lines • 312 B
JavaScript
import React from 'react';
import { Box, xcss } from '@atlaskit/primitives';
var styles = xcss({
width: '360px'
});
export var AgentProfileCardWrapper = function AgentProfileCardWrapper(_ref) {
var children = _ref.children;
return /*#__PURE__*/React.createElement(Box, {
xcss: styles
}, children);
};