How to use the Nequi Logo icon
import { NequiNewLogo } from "@/assets/icons/nequinewLogo"
export default function Example() {
return <NequiNewLogo width="32px" height="32px" />
}Brands icon
Copy the Nequi Logo icon as an optimized JSX SVG component for React, Next.js, dashboards, landing pages and Tailwind interfaces.
Copy-ready code
const NequiNewLogo = ({ mode = "dark", width = "110px", height = "50px" }) => {
const color = mode === "light" ? "#ede7f4" : "#200121";
return (
<svg id="Layer_2" data-name="Layer 2" xmlns="http://www.w3.org/2000/svg" xmlnsXlink="http://www.w3.org/1999/xlink" viewBox="0 0 313.2 97.1" width={width} height={height}>
<defs>
<clipPath id="clippath">
<rect style={{ fill: "none", strokeWidth: "0px" }} width="313.2" height="97.1" />
</clipPath>
</defs>
<g id="Capa_1" data-name="Capa 1">
<g>
<g>
<path style={{ strokeWidth: "0px", fill: "#da0081" }} d="m16,0H2.8C1.2,0,0,1.2,0,2.8v11.2c0,1.5,1.2,2.8,2.8,2.8h13.2c1.5,0,2.8-1.2,2.8-2.8V2.8c0-1.5-1.2-2.8-2.8-2.8Z" />
<path style={{ fill: color }} d="m96.3,0h-11.3c-1.6,0-2.8,1.3-2.8,2.8v45.4c0,.9-1.2,1.3-1.6.4L54.2,1.2c-.4-.8-1.2-1.2-2.1-1.2h-18.9c-1.6,0-2.8,1.3-2.8,2.8v72.5c0,1.6,1.3,2.8,2.8,2.8h11.3c1.6,0,2.8-1.3,2.8-2.8V28.5c0-.9,1.2-1.3,1.6-.4l27.1,48.8c.4.8,1.2,1.2,2.1,1.2h18c1.6,0,2.8-1.3,2.8-2.8V2.8c0-1.6-1.3-2.8-2.8-2.8h0Z" />
<path style={{ fill: color }} d="m164.6,49.8c0-20.4-13.3-30.6-27.9-30.6s-29.8,13.2-29.8,30.9,13.6,29.8,29.3,29.8,25-8.2,27.5-18.7c.3-1.4-.4-2.6-2.5-2.6h-8.9c-1,0-1.9.5-2.3,1.6-2.2,4.9-5.8,7.5-12.7,7.5s-13-4.9-13.8-14.9h38.4c1.6,0,2.8-1.2,2.8-3Zm-40.5-7.7c1.6-7.3,5.9-10.6,12.4-10.6s10.7,3.3,11.4,10.6h-23.8Z" />
<path style={{ fill: color }} d="m310.4,20.6h-11.4c-1.5,0-2.8,1.2-2.8,2.8v51.9c0,1.5,1.2,2.8,2.8,2.8h11.4c1.5,0,2.8-1.2,2.8-2.8V23.4c0-1.5-1.2-2.8-2.8-2.8Z" />
<path style={{ fill: color }} d="m225.8,20.6h-11.3c-1.6,0-2.8,1.3-2.8,2.8v2.8c-3.4-4-9-6.7-16.3-6.7-16.4,0-25.1,14.9-25.1,30.6s7.1,29.1,24.7,29.1,13-3,16.6-7.3v22.3c0,1.6,1.3,2.8,2.8,2.8h11.3c1.6,0,2.8-1.3,2.8-2.8V23.4c0-1.6-1.3-2.8-2.8-2.8h0Zm-25.9,46.3c-7.5,0-12.7-5.5-12.7-17.3s5.2-18,12.7-18,12.7,5.7,12.7,18-5.2,17.3-12.7,17.3Z" />
<path style={{ fill: color }} d="m286.2,20.6h-11.3c-1.6,0-2.8,1.3-2.8,2.8v29.4c0,9.5-4.2,12.2-9.6,12.2s-9.6-2.8-9.6-12.2v-29.4c0-1.6-1.3-2.8-2.8-2.8h-11.3c-1.6,0-2.8,1.3-2.8,2.8v30.6c0,18.2,10,25.5,26.5,25.5s26.5-7.4,26.5-25.5v-30.6c0-1.6-1.3-2.8-2.8-2.8h0Z" />
</g>
</g>
</g>
</svg>
);
};
export default NequiNewLogo;
import { NequiNewLogo } from "@/assets/icons/nequinewLogo"
export default function Example() {
return <NequiNewLogo width="32px" height="32px" />
}Built for the web
This copy-ready component works in React and Next.js projects, and the SVG can be adapted for any interface.
Looking for a similar mark? Browse the related icons below or explore the full brands collection.
Yes. You can copy the JSX component and use it in React and Next.js projects.
Yes. Edit the SVG attributes or pass className, width, height and color props depending on the component.