sebikostudio-icons
Version:
A collection of icon components
31 lines • 1.61 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 TokensIcon = /*#__PURE__*/forwardRef(({
className,
style,
ariaLabel,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", _extends({
ref: ref,
className: className,
"aria-label": ariaLabel || "tokens, circles, variables",
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: "M8.5 6C8.5 7.38071 7.38071 8.5 6 8.5C4.61929 8.5 3.5 7.38071 3.5 6C3.5 4.61929 4.61929 3.5 6 3.5C7.38071 3.5 8.5 4.61929 8.5 6Z",
stroke: "currentColor"
}), /*#__PURE__*/React.createElement("path", {
d: "M8.5 14C8.5 15.3807 7.38071 16.5 6 16.5C4.61929 16.5 3.5 15.3807 3.5 14C3.5 12.6193 4.61929 11.5 6 11.5C7.38071 11.5 8.5 12.6193 8.5 14Z",
stroke: "currentColor"
}), /*#__PURE__*/React.createElement("path", {
d: "M16.5 6C16.5 7.38071 15.3807 8.5 14 8.5C12.6193 8.5 11.5 7.38071 11.5 6C11.5 4.61929 12.6193 3.5 14 3.5C15.3807 3.5 16.5 4.61929 16.5 6Z",
stroke: "currentColor"
}), /*#__PURE__*/React.createElement("path", {
d: "M16.5 14C16.5 15.3807 15.3807 16.5 14 16.5C12.6193 16.5 11.5 15.3807 11.5 14C11.5 12.6193 12.6193 11.5 14 11.5C15.3807 11.5 16.5 12.6193 16.5 14Z",
stroke: "currentColor"
})));
export default TokensIcon;