styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
14 lines (13 loc) • 899 B
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var Megaphone = 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: "M20.664 3.478L8 8v7l.748.267-1.127 2.254a1.999 1.999 0 001.156 2.792l4.084 1.361a2.015 2.015 0 002.421-1.003l1.303-2.606 4.079 1.457A1 1 0 0022 18.581V4.419a1 1 0 00-1.336-.941zm-7.171 16.299L9.41 18.416l1.235-2.471 4.042 1.444-1.194 2.388zM4 15h2V8H4c-1.103 0-2 .897-2 2v3c0 1.103.897 2 2 2z", key: "k0" })));
});
Megaphone.displayName = 'Megaphone';
export var MegaphoneDimensions = { height: 24, width: 24 };