sebikostudio-icons
Version:
A collection of icon components
110 lines • 2.45 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 BlurIcon = /*#__PURE__*/forwardRef(({
className,
style,
ariaLabel,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", _extends({
ref: ref,
className: className,
"aria-label": ariaLabel || "blur, circles, splash",
style: style,
width: "20",
height: "20",
viewBox: "0 0 20 20",
fill: "none",
xmlns: "http://www.w3.org/2000/svg"
}, props), /*#__PURE__*/React.createElement("rect", {
x: "5",
y: "5",
width: "4",
height: "4",
rx: "2",
fill: "currentColor"
}), /*#__PURE__*/React.createElement("rect", {
x: "16",
y: "6",
width: "3",
height: "3",
rx: "1.5",
fill: "currentColor"
}), /*#__PURE__*/React.createElement("rect", {
x: "11",
y: "1",
width: "3",
height: "3",
rx: "1.5",
fill: "currentColor"
}), /*#__PURE__*/React.createElement("rect", {
x: "6",
y: "1",
width: "3",
height: "3",
rx: "1.5",
fill: "currentColor"
}), /*#__PURE__*/React.createElement("rect", {
x: "1",
y: "6",
width: "3",
height: "3",
rx: "1.5",
fill: "currentColor"
}), /*#__PURE__*/React.createElement("rect", {
x: "16",
y: "11",
width: "3",
height: "3",
rx: "1.5",
fill: "currentColor"
}), /*#__PURE__*/React.createElement("rect", {
x: "11",
y: "16",
width: "3",
height: "3",
rx: "1.5",
fill: "currentColor"
}), /*#__PURE__*/React.createElement("rect", {
x: "6",
y: "16",
width: "3",
height: "3",
rx: "1.5",
fill: "currentColor"
}), /*#__PURE__*/React.createElement("rect", {
x: "1",
y: "11",
width: "3",
height: "3",
rx: "1.5",
fill: "currentColor"
}), /*#__PURE__*/React.createElement("rect", {
x: "11",
y: "5",
width: "4",
height: "4",
rx: "2",
fill: "currentColor"
}), /*#__PURE__*/React.createElement("rect", {
x: "5",
y: "11",
width: "4",
height: "4",
rx: "2",
fill: "currentColor"
}), /*#__PURE__*/React.createElement("rect", {
x: "7",
y: "7",
width: "6",
height: "6",
rx: "3",
fill: "currentColor"
}), /*#__PURE__*/React.createElement("rect", {
x: "11",
y: "11",
width: "4",
height: "4",
rx: "2",
fill: "currentColor"
})));
export default BlurIcon;