How to use the Athleta icon
import { AthletaLogo } from "@/assets/icons/athletaLogo"
export default function Example() {
return <AthletaLogo width="32px" height="32px" />
}Brands icon
Copy the Athleta 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/1221983816
// Asset license: Public domain textlogo
// Optimized, converted to monochrome currentColor JSX, and parameterized by JSXIcons.
export const AthletaLogo = ({ width = "40px", height = "40px", color = "#000000", ...props }) => (
<svg {...props} width={width} height={height} viewBox="0 0 118 18" xmlns="http://www.w3.org/2000/svg" fill={color} color={color}>
<g clipPath="url(#a)"><path fill="currentColor" d="M16.332 17.89h-2.77L11.8 13.81H4.619l-1.868 4.08H.023L8.325.038zm14.08-14.414h-3.847V17.89h-2.53V3.476h-3.857V1.093H30.41zm9.219 4.187h7.236v-6.57H49.4V17.89h-2.533v-7.843h-7.236v7.843H37.1V1.093h2.53zm20.749 7.845h4.932v2.382h-7.464V1.093h2.532zM81.397 3.476H74.67v4.037h6.531v2.382h-6.531v5.613h6.725v2.382H72.14V1.094h9.257zm36.498 14.413h-2.771l-1.761-4.08h-7.181l-1.87 4.08h-2.726L109.888.04zM97.623 3.476h-3.846v14.413h-2.532V3.476h-3.857V1.093h10.235zM5.675 11.429h5.095L8.28 5.717zm101.56-.001h5.098l-2.488-5.712z"/></g><defs><clipPath id="a"><path fill="currentColor" d="M0 0h118v18H0z"/></clipPath></defs>
</svg>
)
import { AthletaLogo } from "@/assets/icons/athletaLogo"
export default function Example() {
return <AthletaLogo 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.