sebikostudio-icons
Version:
A collection of icon components
42 lines • 1.81 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 TextUnorderedListIcon = /*#__PURE__*/forwardRef(({
className,
style,
ariaLabel,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", _extends({
ref: ref,
className: className,
"aria-label": ariaLabel || "text unordered list, ul, list, bullet points, unordered list",
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: "M18.5 3.5H5M18.5 15.5H5M18.5 9.5H5",
stroke: "currentColor",
strokeLinecap: "round",
strokeLinejoin: "round"
}), /*#__PURE__*/React.createElement("path", {
d: "M2.5 15.5C2.5 15.7761 2.27614 16 2 16C1.72386 16 1.5 15.7761 1.5 15.5C1.5 15.2239 1.72386 15 2 15C2.27614 15 2.5 15.2239 2.5 15.5Z",
fill: "currentColor",
stroke: "currentColor",
strokeLinecap: "round",
strokeLinejoin: "round"
}), /*#__PURE__*/React.createElement("path", {
d: "M2.5 9.5C2.5 9.77614 2.27614 10 2 10C1.72386 10 1.5 9.77614 1.5 9.5C1.5 9.22386 1.72386 9 2 9C2.27614 9 2.5 9.22386 2.5 9.5Z",
fill: "currentColor",
stroke: "currentColor",
strokeLinecap: "round",
strokeLinejoin: "round"
}), /*#__PURE__*/React.createElement("path", {
d: "M2.5 3.5C2.5 3.77614 2.27614 4 2 4C1.72386 4 1.5 3.77614 1.5 3.5C1.5 3.22386 1.72386 3 2 3C2.27614 3 2.5 3.22386 2.5 3.5Z",
fill: "currentColor",
stroke: "currentColor",
strokeLinecap: "round",
strokeLinejoin: "round"
})));
export default TextUnorderedListIcon;