UNPKG

styled-icons

Version:

Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components

14 lines (13 loc) 754 B
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var MessageRounded = React.forwardRef(function (props, ref) { var attrs = { "fill": "currentColor", "xmlns": "http://www.w3.org/2000/svg", }; return (React.createElement(StyledIconBase, __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 3z", key: "k0" }))); }); MessageRounded.displayName = 'MessageRounded'; export var MessageRoundedDimensions = { height: 24, width: 24 };