@pathwright/pathicons
Version:
Pathwright icons, synced from Figma to React components
40 lines (37 loc) • 2.46 kB
JavaScript
import _defineProperty from '@babel/runtime/helpers/esm/defineProperty';
import _objectWithoutProperties from '@babel/runtime/helpers/esm/objectWithoutProperties';
import React from 'react';
import PropTypes from 'prop-types';
import { jsx } from 'react/jsx-runtime';
var _excluded = ["color", "size"];
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
var ArrowDoubleVerticalIcon = /*#__PURE__*/React.forwardRef(function ArrowDoubleVerticalIcon(props, ref) {
var color = props.color,
size = props.size,
otherProps = _objectWithoutProperties(props, _excluded);
return /*#__PURE__*/jsx("svg", _objectSpread(_objectSpread({
ref: ref,
xmlns: "http://www.w3.org/2000/svg",
width: size,
height: size,
viewBox: "0 0 24 24",
fill: color
}, otherProps), {}, {
children: /*#__PURE__*/jsx("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M12 0.698292L12.634 1.22659L12.6456 1.23628L18.6402 6.23178C19.0645 6.58534 19.1218 7.21591 18.7682 7.64018C18.4147 8.06446 17.7841 8.12179 17.3598 7.76822L13 4.13505V19.865L17.3598 16.2318C17.7841 15.8782 18.4147 15.9355 18.7682 16.3598C19.1218 16.7841 19.0645 17.4147 18.6402 17.7682L12 23.3017L5.35981 17.7682C4.93553 17.4147 4.87821 16.7841 5.23177 16.3598C5.58534 15.9355 6.2159 15.8782 6.64018 16.2318L11 19.865V4.13504L6.64018 7.76822C6.2159 8.12179 5.58534 8.06446 5.23177 7.64018C4.87821 7.21591 4.93553 6.58534 5.35981 6.23178L11.3551 1.23566L11.3653 1.2272L12 0.698292Z"
})
}));
});
ArrowDoubleVerticalIcon.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
};
ArrowDoubleVerticalIcon.defaultProps = {
color: 'currentColor',
size: '24'
};
export { ArrowDoubleVerticalIcon as default };
//# sourceMappingURL=arrow-double-vertical.js.map