optimall-icons
Version:
Biblioteca de ícones do Optimall
29 lines • 2.87 kB
JavaScript
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
import React, { forwardRef } from 'react';
export const MegaphoneIcon = /*#__PURE__*/forwardRef(({
className,
style,
ariaLabel,
size = 24,
width,
height,
...props
}, ref) => {
const iconSize = width || height || size;
return /*#__PURE__*/React.createElement("svg", _extends({
ref: ref,
className: className,
"aria-label": ariaLabel || "megaphone",
style: style,
width: width || iconSize,
height: height || iconSize,
viewBox: "0 0 24 24",
fill: "currentColor",
xmlns: "http://www.w3.org/2000/svg"
}, props), /*#__PURE__*/React.createElement("path", {
d: "M19.586 3.1c.274 0 .597-.01.895.063l.126.036.206.083a1.9 1.9 0 0 1 .987 1.11l.037.126c.052.213.062.44.063.65v13.663c-.002.253-.017.527-.1.775v.001a1.901 1.901 0 0 1-1.193 1.193c-.248.084-.522.098-.776.1h-.413a2.65 2.65 0 0 1-.185-.01l-.127-.015a1.9 1.9 0 0 1-.8-.332c-.139-.1-.258-.222-.357-.32l-.168-.17c-.73-.73-.994-.986-1.298-1.169l-.02-.011c-.228-.135-.483-.232-1.01-.396l-.632-.191-1.33-.4-1.162 1.742a2.855 2.855 0 0 1-5.215-1.29l-.014-.293V15.97l-.232-.069H6c-.453 0-.839 0-1.155-.021a3.353 3.353 0 0 1-.72-.118l-.234-.082a2.903 2.903 0 0 1-1.448-1.31l-.123-.26a2.976 2.976 0 0 1-.199-.954C2.1 12.838 2.1 12.453 2.1 12c0-.454 0-.84.021-1.156.022-.324.07-.642.2-.954l.122-.26a2.903 2.903 0 0 1 1.448-1.31l.234-.082c.236-.07.476-.1.72-.117.316-.022.702-.022 1.155-.022h.868l7.953-2.385.632-.192c.529-.164.783-.261 1.01-.396l.021-.012c.304-.183.568-.439 1.297-1.168l.168-.169.163-.16a1.9 1.9 0 0 1 .994-.493l.127-.015c.126-.01.248-.01.353-.01ZM8.9 18.045l.005.107a1.054 1.054 0 0 0 1.926.478l.857-1.286L8.9 16.51v1.537ZM19.414 4.9h-.016a.102.102 0 0 0-.042.018c.01-.007.01-.008-.011.011l-.122.12-.17.168c-.67.67-1.107 1.117-1.644 1.44h-.002l-.02.013-.002.001c-.404.24-.842.397-1.42.576l-.627.19L7.9 9.668v4.662l7.438 2.231.628.19c.48.15.865.283 1.214.462l.205.114.003.002.02.012h.002l.196.127c.453.311.86.726 1.448 1.313l.169.168.12.12c.022.02.022.019.012.012l.043.017h.016l.172.001c.203 0 .318 0 .402-.005a.34.34 0 0 0 .051-.005.096.096 0 0 0 .05-.05l.006-.051c.005-.084.005-.2.005-.402V5.414c0-.203 0-.318-.005-.403l-.005-.051a.098.098 0 0 0-.05-.051 8.267 8.267 0 0 0-.453-.009l-.173.001ZM6 9.9c-.478 0-.792 0-1.033.017-.117.008-.2.018-.26.03l-.128.036a1.1 1.1 0 0 0-.549.497l-.047.099c-.023.056-.05.155-.066.387A17.06 17.06 0 0 0 3.9 12c0 .478 0 .792.017 1.033.016.232.043.332.066.388l.047.098c.12.223.313.4.55.497l.126.036c.06.012.144.023.26.03.242.017.556.017 1.034.017h.1V9.9H6Z",
fillRule: "evenodd",
clipRule: "evenodd"
}));
});
export default MegaphoneIcon;