optimall-icons
Version:
Biblioteca de ícones do Optimall
29 lines • 2.77 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 ThumbsDownIcon = /*#__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 || "thumbs, down",
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: "M13.576 2.6c1.163 0 2.099 0 2.86.073.78.075 1.453.232 2.08.592l.167.1c.055.035.11.07.163.107l.216.159c.49.385.86.869 1.207 1.452.385.65.772 1.484 1.252 2.517l.37.802c.352.767.638 1.428.81 1.992.218.714.313 1.455-.012 2.157l-.07.14c-.04.07-.082.14-.127.207l-.143.196c-.522.654-1.282.891-2.08.997-.792.105-1.828.102-3.086.102h-.404a10.4 10.4 0 0 0-.805.017.975.975 0 0 0-.123.017l-.006.006c.002.02.005.048.013.09.034.159.1.375.214.744l.267.86c.067.217.11.36.145.5l.051.23a4.714 4.714 0 0 1-.6 3.341l-.29.437c-.034.05-.073.106-.113.16l-.123.159a1.935 1.935 0 0 1-2.556.295l-.153-.12a2.093 2.093 0 0 1-.142-.14l-.134-.146-4.091-4.53c-.934-1.035-1.57-1.718-1.904-2.563-.667.531-1.51.85-2.429.85a2.9 2.9 0 0 1-2.9-2.9v-6A2.9 2.9 0 0 1 4 2.6c1.205 0 2.282.546 2.997 1.405.08-.1.168-.198.265-.291.64-.62 1.439-.88 2.36-1 .896-.116 2.038-.114 3.443-.114h.511Zm-.511 1.8c-1.454 0-2.457.002-3.211.1-.731.095-1.091.267-1.34.507-.243.236-.415.574-.511 1.27C7.903 7 7.9 7.964 7.9 9.375v.974c0 1.523.014 2.051.198 2.524.184.475.536.885 1.57 2.031l4.092 4.531.11.12c.022.024.023.024.012.014l.04.024a.141.141 0 0 0 .054.006.121.121 0 0 0 .084-.039l.01-.014.092-.133.233-.348.14-.255a2.91 2.91 0 0 0 .257-1.67l-.055-.284-.118-.397-.267-.86c-.103-.335-.2-.647-.255-.91-.056-.268-.095-.6.01-.952l.057-.16c.149-.368.411-.678.746-.888l.114-.066c.27-.14.549-.186.79-.207.27-.024.602-.023.965-.023h.404c1.31 0 2.204-.002 2.85-.087.637-.085.823-.228.908-.335l.054-.074a.731.731 0 0 0 .046-.076l.04-.102c.033-.13.034-.356-.101-.8-.139-.453-.378-1.01-.718-1.754l-.374-.808c-.495-1.065-.84-1.803-1.167-2.357-.318-.536-.585-.835-.89-1.043l-.21-.13c-.325-.187-.72-.303-1.357-.364-.656-.063-1.491-.064-2.688-.064h-.511ZM4 4.4a1.1 1.1 0 0 0-1.1 1.1v6A1.1 1.1 0 0 0 4 12.6a2.1 2.1 0 0 0 2.1-2.1v-4A2.1 2.1 0 0 0 4 4.4Z",
fillRule: "evenodd",
clipRule: "evenodd"
}));
});
export default ThumbsDownIcon;