JSXIcons.com

Brands icon

Nordea JSX Icon

Copy the Nordea icon as an optimized JSX SVG component for React, Next.js, dashboards, landing pages and Tailwind interfaces.

Browse all icons
ComponentNordeaLogo
FilenordeaLogo.jsx
CategoryBrands

Copy-ready code

Nordea React JSX component

// Source: https://raw.githubusercontent.com/glincker/thesvg/bc1ea3c9c5901d1d7a9438e760a9d071955ff29d/public/icons/nordea/mono.svg
// Asset license: MIT License
// Optimized, converted to monochrome currentColor JSX, and parameterized by JSXIcons.
export const NordeaLogo = ({ width = "40px", height = "40px", color = "#0000A0", ...props }) => (
  <svg {...props} width={width} height={height} viewBox="0 0 1515 1477" xmlns="http://www.w3.org/2000/svg" fill={color} color={color}>
    <g fill="currentColor" fillRule="evenodd"><path d="M57.1 832.7c-7.4 0-14.8-1.4-21.7-4.3s-13.1-7-18.4-12.3-9.4-11.5-12.3-18.4S.4 783.4.4 776v-76c0-7.4 1.4-14.8 4.3-21.7s7-13.1 12.3-18.4c5.3-5.2 11.5-9.4 18.4-12.3 6.9-2.8 14.2-4.3 21.7-4.3 7.4 0 14.8 1.4 21.7 4.3s13.1 7 18.4 12.3 9.4 11.5 12.3 18.4 4.3 14.3 4.3 21.7v76c0 31.7-25.5 56.7-56.7 56.7M284.6 842.6c-12.5 0-24.8-2.5-36.3-7.2-11.5-4.8-21.9-11.8-30.7-20.6s-15.8-19.2-20.5-30.7c-4.8-11.5-7.3-23.8-7.3-36.2V464.2c0-25.1 10-49.2 27.8-67 17.8-17.7 41.9-27.7 67-27.7s49.2 10 67 27.7c17.8 17.8 27.8 41.9 27.8 67v283.7c-.6 52-42.8 94.7-94.8 94.7M591.7 1060.2c-15.5-.1-30.8-3.1-45.1-9.1-14.4-5.9-27.4-14.6-38.3-25.6-11-11-19.7-24-25.7-38.3-5.9-14.3-9-29.7-9-45.2V119.2c0-15.5 3.1-30.9 9-45.2 6-14.3 14.7-27.3 25.7-38.3 10.9-11 23.9-19.7 38.3-25.6 14.3-6 29.6-9.1 45.1-9.1 15.6 0 30.9 3.1 45.2 9.1 14.3 5.9 27.4 14.6 38.3 25.6 11 10.9 19.7 23.9 25.7 38.3 5.9 14.3 9 29.6 9 45.1V942c0 15.5-3 30.9-8.9 45.3-6 14.3-14.7 27.3-25.7 38.3-10.9 11-24 19.7-38.3 25.6-14.4 5.9-29.7 9-45.3 9M922.8 1476.1c-15.5-.1-30.8-3.2-45.1-9.1-14.4-6-27.4-14.7-38.3-25.7-11-10.9-19.7-23.9-25.6-38.2-6-14.3-9.1-29.7-9.1-45.2V535c0-15.5 3.1-30.8 9.1-45.2 5.9-14.3 14.6-27.3 25.6-38.2 10.9-11 24-19.7 38.3-25.7 14.3-5.9 29.7-9 45.2-9s30.8 3.1 45.1 9c14.4 6 27.4 14.7 38.3 25.7 11 10.9 19.7 23.9 25.7 38.2 5.9 14.4 9 29.7 9 45.2v822.9c.1 15.5-3 30.9-8.9 45.2-6 14.3-14.7 27.4-25.6 38.4-11 10.9-24 19.6-38.4 25.6-14.3 5.9-29.7 9-45.3 9M1230.5 1107c-12.4 0-24.7-2.4-36.2-7.2-11.5-4.7-22-11.7-30.8-20.5s-15.8-19.3-20.5-30.8c-4.8-11.5-7.2-23.8-7.2-36.2V728.6c0-25.1 9.9-49.2 27.7-67 17.8-17.7 41.9-27.7 67-27.7 25.2 0 49.3 10 67 27.7 17.8 17.8 27.8 41.9 27.8 67v283.7c-.5 52.6-42.7 94.7-94.8 94.7M1457.5 832.7c-7.4 0-14.8-1.4-21.7-4.3s-13.1-7-18.4-12.3c-5.2-5.3-9.4-11.5-12.3-18.4-2.8-6.9-4.3-14.3-4.3-21.7v-76c0-7.4 1.5-14.8 4.3-21.7 2.9-6.9 7.1-13.1 12.3-18.4 5.3-5.3 11.5-9.4 18.4-12.3s14.3-4.3 21.7-4.3c7.5 0 14.9 1.5 21.7 4.3 6.9 2.9 13.2 7.1 18.4 12.3 5.3 5.3 9.5 11.5 12.3 18.4 2.9 6.9 4.3 14.3 4.4 21.7v76c0 31.7-25.5 56.7-56.8 56.7"/></g>
  </svg>
)

How to use the Nordea icon

import { NordeaLogo } from "@/assets/icons/nordeaLogo"

export default function Example() {
  return <NordeaLogo width="32px" height="32px" />
}

Built for the web

Use it in your stack

This copy-ready component works in React and Next.js projects, and the SVG can be adapted for any interface.

ReactNext.jsJSXSVGBrands icons

Looking for a similar mark? Browse the related icons below or explore the full brands collection.

Related JSX icons

FAQ

Is the Nordea JSX icon free?

Yes. You can copy the JSX component and use it in React and Next.js projects.

Can I customize it?

Yes. Edit the SVG attributes or pass className, width, height and color props depending on the component.