adwaita-web
Version:
A GTK inspired toolkit designed to build awesome web apps
62 lines (61 loc) • 2.2 kB
JavaScript
import * as React from "react";
import { memo } from "react";
import cx from "clsx";
const SvgEmojiTravelSymbolic = (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.003 16",
...props
}, /* @__PURE__ */ React.createElement("path", {
d: "M3.003 1a1 1 0 00-.97.758l-1 4a1 1 0 00-.03.242v.04c-.564.094-1 .561-1 1.153v4.614c0 .592.436 1.059 1 1.154V14.5c0 .277.223.5.5.5h2c.277 0 .5-.223.5-.5V13h8v1.5c0 .277.223.5.5.5h2c.277 0 .5-.223.5-.5v-1.54c.564-.094 1-.561 1-1.153V7.193c0-.592-.436-1.059-1-1.154V6a1 1 0 00-.03-.242l-1-4a1 1 0 00-.97-.758zm.781 2h8.438l.75 3H3.034zm-.281 5a1.5 1.5 0 011.5 1.5 1.5 1.5 0 01-1.5 1.5 1.5 1.5 0 01-1.5-1.5 1.5 1.5 0 011.5-1.5zm9 0a1.5 1.5 0 011.5 1.5 1.5 1.5 0 01-1.5 1.5 1.5 1.5 0 01-1.5-1.5 1.5 1.5 0 011.5-1.5z",
style: {
lineHeight: "normal",
fontVariantLigatures: "normal",
fontVariantPosition: "normal",
fontVariantCaps: "normal",
fontVariantNumeric: "normal",
fontVariantAlternates: "normal",
fontFeatureSettings: "normal",
textIndent: 0,
textAlign: "start",
textDecorationLine: "none",
textDecorationStyle: "solid",
textDecorationColor: "#000",
textTransform: "none",
textOrientation: "mixed",
shapePadding: 0,
isolation: "auto",
mixBlendMode: "normal"
},
color: "#000",
fontWeight: 400,
fontFamily: "sans-serif",
overflow: "visible",
fill: "#2e3436",
fillRule: "evenodd"
})));
return render(rest, ...restArgs);
};
const Memo = memo(SvgEmojiTravelSymbolic);
var emoji_travel_symbolic_default = Memo;
export {
emoji_travel_symbolic_default as default
};