sebikostudio-icons
Version:
A collection of icon components
45 lines • 1.88 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 ScissorsIcon = /*#__PURE__*/forwardRef(({
className,
style,
ariaLabel,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", _extends({
ref: ref,
className: className,
"aria-label": ariaLabel || "scissors, cut, cutters, slice, split",
style: style,
width: "20",
height: "20",
viewBox: "0 0 20 20",
fill: "none",
xmlns: "http://www.w3.org/2000/svg"
}, props), /*#__PURE__*/React.createElement("path", {
d: "M6.5 14C6.5 15.3807 5.38071 16.5 4 16.5C2.61929 16.5 1.5 15.3807 1.5 14C1.5 12.6193 2.61929 11.5 4 11.5C5.38071 11.5 6.5 12.6193 6.5 14Z",
stroke: "currentColor",
strokeLinecap: "round",
strokeLinejoin: "round"
}), /*#__PURE__*/React.createElement("path", {
d: "M6.5 6C6.5 7.38071 5.38071 8.5 4 8.5C2.61929 8.5 1.5 7.38071 1.5 6C1.5 4.61929 2.61929 3.5 4 3.5C5.38071 3.5 6.5 4.61929 6.5 6Z",
stroke: "currentColor",
strokeLinecap: "round",
strokeLinejoin: "round"
}), /*#__PURE__*/React.createElement("path", {
d: "M6 12.5L10.5 9.5M10.5 9.5L18.5 4.5H16L10.5 7.5V9.5Z",
stroke: "currentColor",
strokeLinecap: "round",
strokeLinejoin: "round"
}), /*#__PURE__*/React.createElement("path", {
d: "M16 4.5H18.5L10.5 9.5V7.5L16 4.5Z",
fill: "currentColor"
}), /*#__PURE__*/React.createElement("path", {
d: "M16 15.5H18.5L11.5 11V13L16 15.5Z",
fill: "currentColor"
}), /*#__PURE__*/React.createElement("path", {
d: "M6 7.5L7.5 8.46M18.5 15.5H16L11.5 13V11L18.5 15.5Z",
stroke: "currentColor",
strokeLinecap: "round",
strokeLinejoin: "round"
})));
export default ScissorsIcon;