sebikostudio-icons
Version:
A collection of icon components
35 lines • 1.4 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 SpaceBetweenVerticallyIcon = /*#__PURE__*/forwardRef(({
className,
style,
ariaLabel,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", _extends({
ref: ref,
className: className,
"aria-label": ariaLabel || "space between vertically, space between, between, space",
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: "M1.5 1.5L18.5 1.5",
stroke: "currentColor",
strokeLinecap: "round",
strokeLinejoin: "round"
}), /*#__PURE__*/React.createElement("path", {
d: "M1.5 18.5L18.5 18.5",
stroke: "currentColor",
strokeLinecap: "round",
strokeLinejoin: "round"
}), /*#__PURE__*/React.createElement("path", {
d: "M8 6C8 6.55228 8.44772 7 9 7H11C11.5523 7 12 6.55228 12 6V1H8V6Z",
fill: "currentColor"
}), /*#__PURE__*/React.createElement("path", {
d: "M8 19H12V14C12 13.4477 11.5523 13 11 13H9C8.44772 13 8 13.4477 8 14V19Z",
fill: "currentColor"
})));
export default SpaceBetweenVerticallyIcon;