UNPKG

styled-icons

Version:

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

14 lines (13 loc) 846 B
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var MessageRoundedDots = 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.355 5 6.678V22l5.339-4.004C17.696 17.861 22 14.55 22 10.5 22 6.364 17.514 3 12 3zm-2.5 9a1.5 1.5 0 110-3 1.5 1.5 0 010 3zm5 0a1.5 1.5 0 110-3 1.5 1.5 0 010 3z", key: "k0" }))); }); MessageRoundedDots.displayName = 'MessageRoundedDots'; export var MessageRoundedDotsDimensions = { height: 24, width: 24 };