How to use the Old Navy icon
import { OldNavyLogo } from "@/assets/icons/oldnavyLogo"
export default function Example() {
return <OldNavyLogo width="32px" height="32px" />
}Brands icon
Copy the Old Navy 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/1114808301
// Asset license: Public domain textlogo
// Optimized, converted to monochrome currentColor JSX, and parameterized by JSXIcons.
export const OldNavyLogo = ({ width = "40px", height = "40px", color = "#000000", ...props }) => (
<svg {...props} width={width} height={height} viewBox="0 0 276.5 47" xmlns="http://www.w3.org/2000/svg" fill={color} color={color}>
<path d="M36.062 23.03c0 6.825-5.054 11.815-11.192 11.815-6.141 0-11.179-4.99-11.179-11.815 0-5.463 5.039-10.451 11.179-10.451 6.138.001 11.192 4.988 11.192 10.451m10.705-.055c0-11.97-10.494-20.372-21.897-20.372-11.394 0-21.894 8.402-21.894 20.372 0 12.816 9.186 21.848 21.894 21.848 12.704 0 21.897-9.032 21.897-21.848m3.509 20.529H72.91V34.79H60.573V3.918H50.276zm50.285-19.79c0 7.715-5.249 11.076-11.4 11.076h-2.313V12.632h2.428c6.612 0 11.285 3.99 11.285 11.082m10.705 0c0-11.134-9.083-19.796-20.106-19.796H76.567v39.586H91.16c10.976 0 20.106-8.658 20.106-19.79m45.182 19.79h10.286V3.918h-10.286v24.207h-.099L137.492 3.918h-10.293v39.586h10.293V19.248h.105zm36.779-14.751h-8.559l4.252-12.599h.108zm16.33 14.751-14.91-39.586h-11.243l-15.22 39.586h10.917l2.73-6.875h14.178l2.572 6.875zm64.466-39.586h-12.334l-7.408 13.976-7.404-13.976h-16.585l-9.603 24.05-8.681-24.05h-11.182l15.754 39.586h7.985l13.992-32.753 10.576 18.002v14.751h10.294V28.753z"/>
</svg>
)
import { OldNavyLogo } from "@/assets/icons/oldnavyLogo"
export default function Example() {
return <OldNavyLogo 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.