How to use the Forever 21 icon
import { Forever21Logo } from "@/assets/icons/forever21Logo"
export default function Example() {
return <Forever21Logo width="32px" height="32px" />
}Brands icon
Copy the Forever 21 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/1114808390
// Asset license: Public domain textlogo
// Optimized, converted to monochrome currentColor JSX, and parameterized by JSXIcons.
export const Forever21Logo = ({ width = "40px", height = "40px", color = "#000000", ...props }) => (
<svg {...props} width={width} height={height} viewBox="0 0 239.276 40.196" xmlns="http://www.w3.org/2000/svg" fill={color} color={color}>
<defs><clipPath id="a"><path d="M0 0h239.276v40.196H0z"/></clipPath></defs><g clipPath="url(#a)"><clipPath id="b"><path fill="currentColor" d="M0 0v40.196h239.276V0z"/></clipPath><g clipPath="url(#b)"><path fill="currentColor" d="m233.656.333-5.619-.019v6.041l5.619-.03v33.548h5.62V.333zm-12.591 9.611c0-5.276-2.481-9.944-8.326-9.944-4.687 0-8.433 3.883-8.433 8.61v3.109h5.619V8.492c0-1.833 1.098-2.834 2.756-2.834 2.755 0 2.755 2.383 2.755 4.384 0 2.167 0 3.275-.99 5.217l-10.14 19.269v5.335h16.759v-5.668h-10.14l8.267-16.053c1.765-3.374 1.873-4.374 1.873-8.198m-52.886 8.051h-3.197V5.668h2.923c4.138 0 4.795 2.167 4.795 6.168 0 3.933-.598 6.159-4.521 6.159m10.15-6.051c0-7.668-3.256-11.611-9.924-11.611h-9.042v39.54h5.619V22.996h3.364l5.237 16.887h5.952l-6.06-18.054c3.579-2.001 4.854-5.335 4.854-9.885m-44.394 27.929h16.76v-5.668h-11.131V22.604h9.699v-5.335h-9.699V5.668h11.131V.333h-16.76zm-18.877-11.935h-.108L110.488.333h-5.952l7.992 39.54h4.962l8.051-39.54h-5.952zM80.559 39.873h16.759v-5.668h-11.14V22.604h9.699v-5.335h-9.699V5.668h11.131V.333h-16.75zm-19.22-21.878h-3.197V5.668h2.922c4.139 0 4.796 2.167 4.796 6.168-.01 3.933-.608 6.159-4.521 6.159m10.14-6.051c0-7.668-3.256-11.611-9.924-11.611h-9.042v39.54h5.619V22.996h3.364l5.236 16.887h5.953l-6.061-18.054c3.59-2.001 4.855-5.335 4.855-9.885M37.853 30.547c0 2.726-1.766 4.001-3.805 4.001s-3.805-1.275-3.805-4.001V9.659c0-2.726 1.765-4.001 3.805-4.001s3.805 1.275 3.805 4.001zM34.048 0c-4.58 0-9.424 3.216-9.424 9.659v20.878c0 6.443 4.854 9.659 9.424 9.659 4.579 0 9.424-3.216 9.424-9.659V9.659C43.472 3.216 38.627 0 34.048 0M0 39.873h5.619V22.996h9.699v-5.335H5.619V5.668h11.13V.333H0z"/></g></g>
</svg>
)
import { Forever21Logo } from "@/assets/icons/forever21Logo"
export default function Example() {
return <Forever21Logo 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.