box-ui-elements
Version:
Box UI Elements
21 lines • 711 B
JavaScript
import * as React from 'react';
import AccessibleSVG from '../accessible-svg';
const IconChatRound = ({
className = '',
color = '#999',
height = 24,
title,
width = 24
}) => /*#__PURE__*/React.createElement(AccessibleSVG, {
className: `icon-chat-round ${className}`,
height: height,
title: title,
viewBox: "0 0 24 24",
width: width
}, /*#__PURE__*/React.createElement("path", {
className: "fill-color",
d: "M14 3h-4a8 8 0 0 0-5 14.26V21a1 1 0 0 0 .08.37 1 1 0 0 0 1.31.53L12 19h2a8 8 0 0 0 0-16zm-6 9a1 1 0 1 1 1-1 1 1 0 0 1-1 1zm4 0a1 1 0 1 1 1-1 1 1 0 0 1-1 1zm4 0a1 1 0 1 1 1-1 1 1 0 0 1-1 1z",
fill: color
}));
export default IconChatRound;
//# sourceMappingURL=IconChatRound.js.map