optimall-icons
Version:
Biblioteca de ícones do Optimall
29 lines • 2.65 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 Ticket02Icon = /*#__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 || "ticket, 02",
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: "M12.386 1.127a5.082 5.082 0 0 1 1.537.076l.203.047c1.001.26 1.86.9 2.83 1.79l.105.107c.45.514.378 1.235.008 1.688l-.083.092c-.491.491-.518 1.383.093 1.994.61.61 1.502.583 1.993.092l.093-.083c.451-.37 1.173-.442 1.687.008l.107.105.342.382c.767.883 1.301 1.697 1.495 2.65l.04.219c.07.437.082.881.037 1.319l-.028.219c-.128.861-.54 1.589-1.134 2.333-.583.729-1.405 1.55-2.431 2.576l-2.54 2.539c-1.025 1.026-1.846 1.848-2.575 2.43-.652.521-1.29.902-2.017 1.075l-.316.06a5.053 5.053 0 0 1-1.539-.01l-.217-.038c-1.09-.223-1.998-.889-3.033-1.838-.564-.517-.51-1.311-.113-1.795l.084-.093c.46-.46.512-1.272.014-1.875l-.108-.118c-.61-.61-1.5-.583-1.992-.093-.47.47-1.337.573-1.888-.028-.89-.971-1.531-1.83-1.79-2.831l-.047-.202a5.07 5.07 0 0 1-.05-1.756l.061-.317c.173-.727.554-1.365 1.075-2.016.582-.73 1.405-1.55 2.43-2.577L7.26 4.72l.732-.73c.698-.692 1.297-1.263 1.844-1.7.743-.595 1.471-1.007 2.332-1.135l.22-.027ZM8.531 5.993 5.993 8.53c-1.055 1.055-1.794 1.794-2.3 2.427-.43.54-.64.94-.729 1.315l-.03.16a3.27 3.27 0 0 0 .032 1.131l.057.219c.138.441.438.921 1.023 1.599 1.261-.898 3.025-.699 4.148.423l.113.12c1.022 1.125 1.176 2.81.31 4.027.79.684 1.312.978 1.818 1.08l.285.046c.285.033.57.028.847-.013l.16-.03c.374-.088.774-.298 1.315-.73.632-.505 1.371-1.244 2.426-2.299l2.538-2.538.094-.094-9.475-9.476-.094.095Zm4.18-3.088-.279.03c-.422.062-.857.266-1.474.759-.316.252-.657.562-1.051.94l9.459 9.458c.378-.394.687-.735.94-1.05.493-.618.696-1.053.759-1.475l.03-.28a3.27 3.27 0 0 0-.017-.567l-.045-.285c-.103-.505-.397-1.028-1.081-1.818-1.26.897-3.024.698-4.146-.424-1.122-1.122-1.322-2.886-.425-4.146-.677-.586-1.157-.886-1.598-1.024l-.219-.057a3.299 3.299 0 0 0-.853-.061Z",
fillRule: "evenodd",
clipRule: "evenodd"
}));
});
export default Ticket02Icon;