How to use the ASOS icon
import { AsosLogo } from "@/assets/icons/asosLogo"
export default function Example() {
return <AsosLogo width="32px" height="32px" />
}Brands icon
Copy the ASOS 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/1114797109
// Asset license: Public domain textlogo
// Optimized, converted to monochrome currentColor JSX, and parameterized by JSXIcons.
export const AsosLogo = ({ width = "40px", height = "40px", color = "#000000", ...props }) => (
<svg {...props} width={width} height={height} viewBox="0 0 110 32" xmlns="http://www.w3.org/2000/svg" fill={color} color={color}>
<path fill="currentColor" fillRule="evenodd" d="M76.033 23.357c-1.65 1.77-3.769 2.669-6.297 2.669-2.529 0-4.648-.899-6.297-2.669-1.575-1.686-2.48-4.382-2.48-7.394 0-2.94.915-5.599 2.507-7.297 1.666-1.77 3.775-2.673 6.268-2.68 2.497.007 4.606.91 6.271 2.68 1.594 1.698 2.507 4.357 2.507 7.297 0 3.012-.904 5.708-2.479 7.394m-22.14-7.394c0 .136.006.27.01.404-2.53-2.303-6.188-3.16-8.423-3.607-4.135-.872-7.294-1.67-7.294-4.614 0-2.077 1.86-3.588 5.433-3.329 3.265.237 4.64 2.233 5.017 4.159.054.316.2.546.56.549l5.872.05q.04-.001.077-.005c-.828 1.931-1.252 4.081-1.252 6.393m-9.987 10.802c-2.84 0-5.969-1.009-6.69-4.913-.061-.373-.237-.527-.523-.535l-5.677-.076V11.206c.746 2.941 3.217 4.977 8.561 6.18 3.577.856 9.782 1.4 9.782 5.072 0 2.56-1.885 4.367-5.453 4.307M15.63 26.03c-4.58 0-8.776-3.605-8.776-10.063C6.854 10.9 10 5.99 15.66 5.99c2.452 0 8.669.84 8.669 9.977 0 9.161-6.491 10.063-8.7 10.063zm69.779-12.528c1.303 1.738 3.655 3.025 7.476 3.885 3.576.856 9.782 1.4 9.782 5.072 0 2.56-1.886 4.367-5.453 4.307-2.839 0-5.97-1.009-6.69-4.913-.06-.373-.236-.527-.523-.535l-5.26-.07c.555-1.637.838-3.41.838-5.284a18 18 0 0 0-.17-2.462m11.417 18.374c6.299 0 13.723-2.345 13.142-9.951-.642-6.752-7.668-8.462-11.18-9.164-4.136-.872-7.295-1.67-7.295-4.614 0-2.077 1.86-3.588 5.434-3.329 3.265.237 4.64 2.233 5.017 4.159.054.316.201.546.56.549l5.872.05c.447.003.586-.229.53-.547C107.756 1.991 101.876 0 96.465 0 91.062 0 84.552 1.518 84.09 8.239q-.023.39-.022.767c-.86-1.788-2.1-3.43-3.698-4.884-2.95-2.66-6.628-4.085-10.639-4.12h-.133c-1.916 0-3.791.353-5.574 1.053a16.1 16.1 0 0 0-4.922 3.067c-1.513 1.376-2.708 2.92-3.562 4.597C54.268 1.936 48.486 0 43.156 0c-4.96 0-10.854 1.283-12.14 6.7V1.323a.52.52 0 0 0-.52-.519h-5.53a.52.52 0 0 0-.519.52v1.45c0 .244-.163.329-.362.187C22.118 1.534 19.208.003 15.706.003c-1.968 0-3.847.346-5.586 1.028-1.74.684-3.394 1.725-4.912 3.095C3.48 5.698 2.164 7.49 1.301 9.452S0 13.606 0 15.966c0 2.203.388 4.269 1.152 6.136s1.927 3.594 3.458 5.134c1.53 1.54 3.242 2.71 5.085 3.48 1.843.767 3.874 1.156 6.04 1.156 3.722 0 6.515-1.585 8.345-3.026.202-.154.367-.071.367.181v1.523c0 .286.234.52.52.52h5.53a.52.52 0 0 0 .519-.52v-5.13c2.607 6.13 9.25 6.455 12.502 6.455 5.436 0 11.705-1.75 12.949-7.118a16.7 16.7 0 0 0 2.037 2.475c2.964 2.983 6.848 4.587 11.237 4.635h.18c2.084 0 4.095-.4 5.977-1.191a15.7 15.7 0 0 0 5.07-3.444 16.2 16.2 0 0 0 2.746-3.644c1.971 7.903 9.563 8.287 13.112 8.287z"/>
</svg>
)
import { AsosLogo } from "@/assets/icons/asosLogo"
export default function Example() {
return <AsosLogo 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.