styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
16 lines (15 loc) • 992 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
var React = tslib_1.__importStar(require("react"));
var StyledIconBase_1 = require("../../StyledIconBase");
exports.MessageRounded = React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg",
};
return (React.createElement(StyledIconBase_1.StyledIconBase, tslib_1.__assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }),
React.createElement("path", { d: "M12 3C6.486 3 2 6.364 2 10.5c0 2.742 1.982 5.354 5 6.678V22l5.339-4.004C17.696 17.861 22 14.551 22 10.5 22 6.364 17.514 3 12 3zm0 13h-.333L9 18v-2.204l-.663-.237C5.743 14.629 4 12.596 4 10.5 4 7.468 7.589 5 12 5s8 2.468 8 5.5-3.589 5.5-8 5.5z", key: "k0" })));
});
exports.MessageRounded.displayName = 'MessageRounded';
exports.MessageRoundedDimensions = { height: 24, width: 24 };
;