How to use the Fashion Nova icon
import { FashionNovaLogo } from "@/assets/icons/fashionnovaLogo"
export default function Example() {
return <FashionNovaLogo width="32px" height="32px" />
}Brands icon
Copy the Fashion Nova 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/1249780847
// Asset license: Public domain textlogo
// Optimized, converted to monochrome currentColor JSX, and parameterized by JSXIcons.
export const FashionNovaLogo = ({ width = "40px", height = "40px", color = "#000000", ...props }) => (
<svg {...props} width={width} height={height} viewBox="0 0 645 61" xmlns="http://www.w3.org/2000/svg" fill={color} color={color}>
<path fillRule="evenodd" d="M220 57c-14.4 0-26.1-11.7-26.1-26.1S205.6 4.8 220 4.8s26.1 11.7 26.1 26.1C246.2 45.4 234.4 57 220 57m0-56.2c-16.6 0-30.1 13.5-30.1 30.1S203.4 61 220 61s30.1-13.5 30.1-30.1C250.2 14.2 236.7.8 220 .8m-42.5 57.4h3.7V1.6h-3.7zM162 27.9h-34.5V1.7h-3.7v56.6h3.7v-27H162v27h3.7V1.7H162zM112.2 33c-1.6-1.4-3.4-2.6-5.4-3.7-2-1-3.8-2-5.7-2.8-2-.9-3.7-1.8-5.1-2.6-1.4-.9-2.6-1.7-3.6-2.7-1-.9-1.7-2-2.2-3.1-.5-1.2-.7-2.6-.7-4.2 0-3.3 1.2-5.8 3.5-7.4 2.4-1.6 5.3-2.4 8.9-2.4 2.2 0 4.3.3 6.4.9s4.2 1.3 6.2 2.3l.9-3.2c-1.9-1-4-1.7-6.3-2.3a30 30 0 0 0-7.4-.9c-2.1 0-4.1.3-6 .8S92.1 3 90.6 4.1 88 6.6 87.1 8.2c-.9 1.7-1.3 3.6-1.3 5.9 0 2.1.4 3.9 1.1 5.4s1.7 2.9 3 4.1 2.8 2.3 4.6 3.3 3.7 2 5.8 3c1.8.9 3.5 1.7 5.1 2.6s3.1 1.8 4.4 2.9 2.3 2.4 3.1 3.8q1.2 2.1 1.2 5.1 0 5.55-3.9 8.7c-2.6 2.1-6.1 3.2-10.5 3.2-2.6 0-5-.3-7.3-.8s-4.6-1.3-6.9-2.3l-.9 3.1c2 1 4.5 1.7 7.3 2.3s5.5.9 8 .9c2.7 0 5.1-.4 7.3-1.1s4.1-1.8 5.7-3.1c1.6-1.4 2.8-3 3.7-4.8.9-1.9 1.3-3.9 1.3-6.1 0-2.4-.5-4.6-1.6-6.4s-2.5-3.5-4.1-4.9m-72 6.8L53 6.5l12.8 33.3zM51.6 1.7 29.2 58.3h3.7L38.8 43H67l6 15.3h3.7L54.3 1.7zM3.7 5h25.6V1.8H0v56.6h3.7V32h24.6v-3.2H3.7zm461.5 31.9 4.4-15.6 4.4 15.6zm33.2 20.3L479.9 2.8c-.2-.5-1.1-1.1-2-1.1h-16.7c-.8 0-1.7.6-2 1.1l-18.5 54.4c-.2.5.1 1.1.7 1.1h16.2c.7 0 1.4-.4 1.7-1.1l2.5-8.6h15.4l2.5 8.6c.3.7 1 1.1 1.7 1.1h16.2c.8-.1 1.1-.6.8-1.1m-126.1-14c-7.2 0-13.1-5.9-13.1-13.1S365.1 17 372.3 17s13.1 5.9 13.1 13.1c.1 7.1-5.8 13.1-13.1 13.1M451 1.7h-18.3c-.7 0-1.4.6-1.6 1.1l-8.6 33.7-8.6-33.7c-.2-.6-.8-1.1-1.6-1.1H394c-.7 0-1.1.6-.8 1.1l3.4 9.9C391.2 5.1 382.3.1 372.2.1c-15 0-27.5 11.2-29.6 25.6V3c0-.7-.5-1.2-1.2-1.2H327c-.6 0-1.1.6-1.1 1.2v25.3L311.7 2.8c-.3-.7-1.1-1.1-1.9-1.1H293v50.8L257.5 1.7H254v56.6h3.6V7.5L293 58.3h17.1c.7 0 1.2-.6 1.2-1.1V31.8l14.3 25.5c.4.7 1.1 1.1 1.7 1.1h14.2c.7 0 1.2-.6 1.2-1.1V34.5c2.1 14.5 14.6 25.6 29.6 25.6 16.5 0 29.9-13.4 29.9-29.9v-1.4l9.9 28.6c.2.6.8 1.1 1.5 1.1h18c.7 0 1.3-.6 1.5-1.1l18.8-54.3c.2-.9-.2-1.4-.9-1.4" clipRule="evenodd"/>
</svg>
)
import { FashionNovaLogo } from "@/assets/icons/fashionnovaLogo"
export default function Example() {
return <FashionNovaLogo 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.