@violetprotocol/nudge-components
Version:
Components for Nudge's websites and applications.
65 lines (64 loc) • 2.58 kB
JavaScript
import { jsxs, jsx } from "react/jsx-runtime";
import { DEFAULT_LARGE_ICON_COLOR } from "../SocialIcon.esm.js";
const FarcasterLargeIcon = ({ color }) => {
return /* @__PURE__ */ jsxs(
"svg",
{
width: "48",
height: "49",
viewBox: "0 0 48 49",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
children: [
/* @__PURE__ */ jsx("rect", { y: "0.613281", width: "48", height: "48", rx: "24", fill: "#855DCD" }),
/* @__PURE__ */ jsxs("g", { clipPath: "url(#clip0_8200_26591)", children: [
/* @__PURE__ */ jsx(
"rect",
{
x: "12",
y: "12.6133",
width: "48",
height: "48",
rx: "10.6667",
fill: "#855DCD"
}
),
/* @__PURE__ */ jsx(
"path",
{
d: "M18.1866 16.3457H29.8133V32.879H28.1066V25.3057H28.0899C27.9012 23.2126 26.1421 21.5724 23.9999 21.5724C21.8577 21.5724 20.0986 23.2126 19.91 25.3057H19.8933V32.879H18.1866V16.3457Z",
fill: color ?? DEFAULT_LARGE_ICON_COLOR
}
),
/* @__PURE__ */ jsx(
"path",
{
d: "M15.0933 18.6924L15.7866 21.039H16.3733V30.5324C16.0787 30.5324 15.8399 30.7712 15.8399 31.0657V31.7057H15.7333C15.4387 31.7057 15.1999 31.9445 15.1999 32.239V32.879H21.1733V32.239C21.1733 31.9445 20.9345 31.7057 20.6399 31.7057H20.5333V31.0657C20.5333 30.7712 20.2945 30.5324 19.9999 30.5324H19.3599V18.6924H15.0933Z",
fill: color ?? DEFAULT_LARGE_ICON_COLOR
}
),
/* @__PURE__ */ jsx(
"path",
{
d: "M28.2133 30.5324C27.9187 30.5324 27.6799 30.7712 27.6799 31.0657V31.7057H27.5733C27.2787 31.7057 27.0399 31.9445 27.0399 32.239V32.879H33.0133V32.239C33.0133 31.9445 32.7745 31.7057 32.4799 31.7057H32.3733V31.0657C32.3733 30.7712 32.1345 30.5324 31.8399 30.5324V21.039H32.4266L33.1199 18.6924H28.8533V30.5324H28.2133Z",
fill: color ?? DEFAULT_LARGE_ICON_COLOR
}
)
] }),
/* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsx("clipPath", { id: "clip0_8200_26591", children: /* @__PURE__ */ jsx(
"rect",
{
width: "24",
height: "24",
fill: color ?? DEFAULT_LARGE_ICON_COLOR,
transform: "translate(12 12.6133)"
}
) }) })
]
}
);
};
export {
FarcasterLargeIcon
};
//# sourceMappingURL=FarcasterLarge.esm.js.map