adwaita-web
Version:
A GTK inspired toolkit designed to build awesome web apps
49 lines (48 loc) • 1.87 kB
JavaScript
import * as React from "react";
import { memo } from "react";
import cx from "clsx";
const SvgViewListBulletSymbolic = (passedProps, ...restArgs) => {
const {
colored,
containerProps = {},
...rest
} = passedProps;
if (colored && typeof colored === "string") {
if (!containerProps.style) {
containerProps.style = {};
}
Object.assign(containerProps.style, {
"--custom-icon-color": colored
});
}
const render = (props) => /* @__PURE__ */ React.createElement("span", {
...containerProps,
className: cx("Icon", containerProps.className, {
colored
})
}, /* @__PURE__ */ React.createElement("svg", {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 16 16",
...props
}, /* @__PURE__ */ React.createElement("g", {
fill: "#2e3436"
}, /* @__PURE__ */ React.createElement("path", {
d: "M2.384 3h1.231A.38.38 0 014 3.379V4.62a.38.38 0 01-.385.38h-1.23A.38.38 0 012 4.621V3.38A.38.38 0 012.384 3zm0 4.016h1.231A.38.38 0 014 7.394v1.243a.38.38 0 01-.385.379h-1.23A.38.38 0 012 8.636V7.395a.38.38 0 01.384-.378zm0 3.984h1.231a.38.38 0 01.385.379v1.242a.38.38 0 01-.385.379h-1.23A.38.38 0 012 12.621V11.38a.38.38 0 01.384-.38z",
style: {
marker: "none"
},
color: "#000",
overflow: "visible"
}), /* @__PURE__ */ React.createElement("path", {
d: "M6.494 3h7c.277 0 .5.223.5.5v1c0 .277-.223.5-.5.5h-7a.499.499 0 01-.5-.5v-1c0-.277.223-.5.5-.5zm0 4h7c.277 0 .5.223.5.5v1c0 .277-.223.5-.5.5h-7a.499.499 0 01-.5-.5v-1c0-.277.223-.5.5-.5zm0 4h7c.277 0 .5.223.5.5v1c0 .277-.223.5-.5.5h-7a.499.499 0 01-.5-.5v-1c0-.277.223-.5.5-.5z",
style: {
marker: "none"
}
}))));
return render(rest, ...restArgs);
};
const Memo = memo(SvgViewListBulletSymbolic);
var view_list_bullet_symbolic_default = Memo;
export {
view_list_bullet_symbolic_default as default
};