adwaita-web
Version:
A GTK inspired toolkit designed to build awesome web apps
64 lines (63 loc) • 2.08 kB
JavaScript
import * as React from "react";
import { memo } from "react";
import cx from "clsx";
const SvgViewListOrderedSymbolic = (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: "M7.494 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 6h7c.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"
}
}), /* @__PURE__ */ React.createElement("path", {
d: "M2.996 3h1.998v4h-2V5h-1l.002-1z",
style: {
marker: "none"
},
color: "#000",
overflow: "visible"
}), /* @__PURE__ */ React.createElement("path", {
style: {
lineHeight: 1.25,
InkscapeFontSpecification: "'Cantarell Ultra-Bold'",
fontVariantLigatures: "normal",
fontVariantCaps: "normal",
fontVariantNumeric: "normal",
fontFeatureSettings: "normal",
textAlign: "start"
},
d: "M1.975 13h4.019v-1h-2c1.5-.5 1.777-1.299 1.832-1.791.089-.806-.896-1.52-1.897-1.513-.74.005-1.305.242-1.935.804l.5 1c.9-.59 1.838-1.05 1.865-.304.02.536-1.865.804-2.384 1.835z",
fontWeight: 800,
fontFamily: "Cantarell",
letterSpacing: 0,
wordSpacing: 0
}))));
return render(rest, ...restArgs);
};
const Memo = memo(SvgViewListOrderedSymbolic);
var view_list_ordered_symbolic_default = Memo;
export {
view_list_ordered_symbolic_default as default
};