sebikostudio-icons
Version:
A collection of icon components
39 lines • 1.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 VectorIcon = /*#__PURE__*/forwardRef(({
className,
style,
ariaLabel,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", _extends({
ref: ref,
className: className,
"aria-label": ariaLabel || "vector, box, square, edit",
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: "M5 3.5L10 3.5L15 3.5M16.5 5L16.5 10.0607L16.5 15M3.5 5L3.5 10.0607L3.5 15M5 16.5L7.85381 16.5L10 16.5L15 16.5",
stroke: "currentColor",
strokeLinejoin: "round"
}), /*#__PURE__*/React.createElement("path", {
d: "M3.5 5C2.67157 5 2 4.32843 2 3.5C2 2.67157 2.67157 2 3.5 2C4.32843 2 5 2.67157 5 3.5C5 4.32843 4.32843 5 3.5 5Z",
stroke: "currentColor",
strokeLinejoin: "round"
}), /*#__PURE__*/React.createElement("path", {
d: "M3.5 18C2.67157 18 2 17.3284 2 16.5C2 15.6716 2.67157 15 3.5 15C4.32843 15 5 15.6716 5 16.5C5 17.3284 4.32843 18 3.5 18Z",
stroke: "currentColor",
strokeLinejoin: "round"
}), /*#__PURE__*/React.createElement("path", {
d: "M16.5 5C15.6716 5 15 4.32843 15 3.5C15 2.67157 15.6716 2 16.5 2C17.3284 2 18 2.67157 18 3.5C18 4.32843 17.3284 5 16.5 5Z",
stroke: "currentColor",
strokeLinejoin: "round"
}), /*#__PURE__*/React.createElement("path", {
d: "M16.5 18C15.6716 18 15 17.3284 15 16.5C15 15.6716 15.6716 15 16.5 15C17.3284 15 18 15.6716 18 16.5C18 17.3284 17.3284 18 16.5 18Z",
stroke: "currentColor",
strokeLinejoin: "round"
})));
export default VectorIcon;