sebikostudio-icons
Version:
A collection of icon components
36 lines • 1.37 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 ToggleGroupIcon = /*#__PURE__*/forwardRef(({
className,
style,
ariaLabel,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", _extends({
ref: ref,
className: className,
"aria-label": ariaLabel || "toggle, toggle group, buttons",
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 4.88462C1.5 4.6722 1.72386 4.5 2 4.5H18C18.2761 4.5 18.5 4.6722 18.5 4.88462V14.1154C18.5 14.3278 18.2761 14.5 18 14.5H2C1.72386 14.5 1.5 14.3278 1.5 14.1154V4.88462Z",
stroke: "currentColor",
strokeLinecap: "round",
strokeLinejoin: "round"
}), /*#__PURE__*/React.createElement("rect", {
x: "4.5",
y: "7.5",
width: "4",
height: "4",
fill: "currentColor",
stroke: "currentColor",
strokeLinejoin: "round"
}), /*#__PURE__*/React.createElement("path", {
d: "M11.5 7.5H15.5V11.5H11.5V7.5Z",
stroke: "currentColor",
strokeLinejoin: "round"
})));
export default ToggleGroupIcon;