UNPKG

@violetprotocol/nudge-components

Version:

Components for Nudge's websites and applications.

27 lines (26 loc) 871 B
import { jsxs, jsx } from "react/jsx-runtime"; import { DEFAULT_LARGE_ICON_COLOR } from "../SocialIcon.esm.js"; const XLargeIcon = ({ color }) => /* @__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: "#161722" }), /* @__PURE__ */ jsx( "path", { d: "M30.3263 14.5176H33.6998L26.3297 22.9411L35 34.4035H28.2112L22.894 27.4516L16.8099 34.4035H13.4344L21.3174 25.3937L13 14.5176H19.9611L24.7674 20.8719L30.3263 14.5176ZM29.1423 32.3844H31.0116L18.9454 16.4307H16.9395L29.1423 32.3844Z", fill: color ?? DEFAULT_LARGE_ICON_COLOR } ) ] } ); export { XLargeIcon }; //# sourceMappingURL=XLarge.esm.js.map