How to use the U.S. Bank icon
import { UsBankLogo } from "@/assets/icons/usbankLogo"
export default function Example() {
return <UsBankLogo width="32px" height="32px" />
}Brands icon
Copy the U.S. Bank icon as an optimized JSX SVG component for React, Next.js, dashboards, landing pages and Tailwind interfaces.
Copy-ready code
// Source: https://commons.wikimedia.org/wiki/Special:PermanentLink/1174881190
// Asset license: Public domain textlogo
// Optimized, converted to monochrome currentColor JSX, and parameterized by JSXIcons.
export const UsBankLogo = ({ width = "40px", height = "40px", color = "#0C2074", ...props }) => (
<svg {...props} width={width} height={height} viewBox="0 0 258.52 72" xmlns="http://www.w3.org/2000/svg" fill={color} color={color}>
<path fill="currentColor" d="M255.26 44.78a3.25 3.25 0 1 0 3.25 3.24 3.22 3.22 0 0 0-3.25-3.24m0 6a2.81 2.81 0 1 1 2.79-2.81 2.77 2.77 0 0 1-2.79 2.86Z"/><path fill="currentColor" d="M256.67 49.03a1 1 0 0 0-.19-.55.87.87 0 0 0-.61-.35 1.2 1.2 0 0 0 .51-.17.79.79 0 0 0 .35-.7.89.89 0 0 0-.55-.91 2.9 2.9 0 0 0-1-.13h-1.22v3.57h.62v-1.38h.5a1.6 1.6 0 0 1 .7.11c.35.21.33.66.34 1.06a.6.6 0 0 0 0 .23h.58a.55.55 0 0 1-.05-.23c.02-.17.02-.26.02-.55m-1.52-1.08h-.57v-1.3h.54c.76 0 1 .18 1 .66s-.42.64-.97.64M117.97 13.54c-5 0-9 2.06-10.55 4.33V0H96.5v50.83h10.76v-4.1c1.69 2.79 5.42 4.91 10.26 4.91 10.18 0 17.36-8 17.36-19.12.01-10.92-6.36-18.98-16.91-18.98m-2.42 28.14c-4.32 0-8.28-3.08-8.28-9.09s4-9 8.28-9 8.21 2.86 8.21 9-3.89 9.09-8.21 9.09M169.82 45.19V27.41c0-7.47-4.32-14.07-16.11-14.07-10.7 0-15.54 6.89-16 12.09l9.67 2a5.86 5.86 0 0 1 6.23-5.35c3.52 0 5.35 1.83 5.35 4 0 1.24-.66 2.2-2.64 2.49l-8.57 1.32c-6 .88-10.77 4.54-10.77 11 0 5.78 4.62 11.06 12.6 11.06 4.84 0 8.35-2 10.26-5.13a17.2 17.2 0 0 0 .37 4.1h10a36 36 0 0 1-.39-5.73m-10.84-8.64c0 5.64-3.37 7.25-6.67 7.25-3.07 0-4.32-1.83-4.32-3.74 0-2.56 1.76-3.66 4.1-4l6.89-1.1ZM208.89 27.98v22.85h-11.13v-21c0-3.59-1.91-6.3-5.94-6.3-3.66 0-6 2.71-6 6.37v20.93h-11.14V14.41h10.77v4.18c2-3.44 6.45-5.13 10.18-5.13 9.16.01 13.26 6.53 13.26 14.52M225.03 0v26.66l11.06-12.23h14.44l-14.22 15.31 14.51 21.1h-13.63l-8.57-12.82-3.59 3.88v8.94H213.9V0z"/><path fill="currentColor" d="M0 54.5 43.5 72 87 54.5V0H0z"/><path fill="currentColor" d="M33.09 47.17c-1.9 3.15-6.08 4.47-9.74 4.47-8.87 0-13.85-6.45-13.85-14.21V14.41h11.14v20.67c0 3.52 1.9 6.3 5.86 6.3 3.74 0 6.08-2.56 6.08-6.22V14.41h11.14v29.9a58 58 0 0 0 .36 6.52H33.39a26 26 0 0 1-.3-3.66M57.57 38.82c.15 2.49 1.91 4.91 5.72 4.91 2.86 0 4.25-1.54 4.25-3.15 0-1.32-.88-2.42-3.59-3l-4.18-1c-7.76-1.64-10.84-6.04-10.84-11.17 0-6.66 5.86-12.09 14-12.09 10.55 0 14.22 6.6 14.58 10.85l-9.25 1.68a4.78 4.78 0 0 0-5.19-4.44c-2.13 0-4 1.25-4 3.15 0 1.54 1.25 2.42 2.86 2.71l4.84 1c7.54 1.53 11.2 6.08 11.2 11.42 0 6.23-4.76 12.31-14.5 12.31-11.43 0-15.09-7.4-15.39-11.43Z"/>
</svg>
)
import { UsBankLogo } from "@/assets/icons/usbankLogo"
export default function Example() {
return <UsBankLogo 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.