UNPKG

@violetprotocol/nudge-components

Version:

Components for Nudge's websites and applications.

13 lines (12 loc) 405 B
import { jsx } from "react/jsx-runtime"; import fullWhiteLogo from "../../assets/nudge-logo-full-white.png.esm.js"; const Logo = ({ ImageComponent, ...props }) => { if (ImageComponent) { return /* @__PURE__ */ jsx(ImageComponent, { src: fullWhiteLogo, ...props }); } return /* @__PURE__ */ jsx("img", { src: fullWhiteLogo, ...props }); }; export { Logo }; //# sourceMappingURL=Logo.esm.js.map