box-ui-elements
Version:
Box UI Elements
24 lines • 889 B
JavaScript
import * as React from 'react';
import AccessibleSVG from '../accessible-svg';
const IconChat = ({
className = '',
color = '#979797',
height = 16,
title,
width = 16
}) => /*#__PURE__*/React.createElement(AccessibleSVG, {
className: `icon-chat ${className}`,
height: height,
title: title,
viewBox: "0 0 14 15",
width: width
}, /*#__PURE__*/React.createElement("g", {
className: "fill-color",
fill: color
}, /*#__PURE__*/React.createElement("path", {
d: "M1 0C.4 0 0 .4 0 1v10h2v3.2L5.7 11H13c.6 0 1-.4 1-1V0H1zm12 10H5.3l-.3.2L3 12v-2H1V1h12v9z"
}), /*#__PURE__*/React.createElement("path", {
d: "M3.5 6h1c.3 0 .5-.2.5-.5S4.8 5 4.5 5h-1c-.3 0-.5.2-.5.5s.2.5.5.5zM6.5 6h1c.3 0 .5-.2.5-.5S7.8 5 7.5 5h-1c-.3 0-.5.2-.5.5s.2.5.5.5zM9.5 6h1c.3 0 .5-.2.5-.5s-.2-.5-.5-.5h-1c-.3 0-.5.2-.5.5s.2.5.5.5z"
})));
export default IconChat;
//# sourceMappingURL=IconChat.js.map