How to use the ASICS icon
import { AsicsLogo } from "@/assets/icons/asicsLogo"
export default function Example() {
return <AsicsLogo width="32px" height="32px" />
}Brands icon
Copy the ASICS 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/1086087675
// Asset license: Public domain textlogo
// Optimized, converted to monochrome currentColor JSX, and parameterized by JSXIcons.
export const AsicsLogo = ({ width = "40px", height = "40px", color = "#000000", ...props }) => (
<svg {...props} width={width} height={height} viewBox="0 0 250 88" xmlns="http://www.w3.org/2000/svg" fill={color} color={color}>
<g fill="currentColor"><path d="M29.219 60.303c-4.446 0-6.583-3.418-5.467-7.372 2.304-8.195 17.109-20.339 27.198-20.339 7.357 0 6.797 6.583 2.484 12.198l-2.384 2.639c-8.551 8.391-16.478 12.874-21.831 12.874m36.06-55.262c-12.876.005-27.055 7.882-35.96 15.342l.703 1.019c13.822-9.689 33.001-15.989 38.288-6.539 2.792 4.985-1.947 15.053-8.621 23.01 1.596-3.514.542-10.261-8.764-10.261C35.455 27.612 5 48.105 5 69.078c0 8.401 5.828 13.882 15.428 13.882 25.696 0 60.544-42.12 60.544-63.275 0-7.473-4.299-14.644-15.693-14.644M98.361 60.303c-1.496 0-2.741-.522-3.52-1.475-.812-.999-1.054-2.415-.669-3.877.855-3.172 4.274-5.664 7.79-5.664h8.27l-2.955 11.016zm23.768-33.024c-2.365-2.908-6.194-4.209-8.934-4.209H98.167l-2.551 9.514h14.173l1.358.143c.014 0 1.301.15 2.019 1.116.58.808.665 2.008.248 3.582l-.67 2.504h-8.93c-7.686 0-18.401 5.514-20.79 14.42-1.188 4.441-.147 8.288 2.161 11.115 2.29 2.806 6.612 4.355 11.281 4.355h8.27-.005 10.511l4.93-18.411 3.629-13.533c1.425-5.321-.119-8.701-1.672-10.596M225.361 23.07c-4.066 0-7.844 1.203-10.916 3.48-3.102 2.297-4.813 5.057-5.833 8.864-2.213 8.251 4.271 12.233 9.481 15.056 3.737 2.024 6.969 3.77 6.269 6.356-.494 1.856-1.305 3.48-5.902 3.48h-14.033l-2.546 9.513h15.533c4.165 0 8.009-.867 11.106-3.245 3.1-2.386 4.852-5.71 5.935-9.767 1.04-3.861.339-7.549-2.146-10.301-2.071-2.311-5.05-3.916-7.675-5.334-3.364-1.81-6.536-3.518-5.982-5.588.339-1.253 1.582-3 4.299-3h13.651l2.552-9.514zM143.921 23.07c-4.065 0-7.842 1.203-10.915 3.48-3.102 2.297-4.813 5.057-5.843 8.864-2.208 8.251 4.281 12.233 9.49 15.056 3.739 2.024 6.963 3.77 6.27 6.356-.499 1.856-1.306 3.48-5.903 3.48h-14.031l-2.551 9.513h15.532c4.17 0 8.013-.867 11.11-3.245 3.105-2.386 4.853-5.71 5.936-9.767 1.036-3.861.334-7.549-2.141-10.301-2.071-2.311-5.055-3.916-7.685-5.334-3.359-1.81-6.527-3.518-5.972-5.588.333-1.253 1.581-3 4.293-3h13.643l2.556-9.514zM165.115 23.07l-12.183 46.749h10.293l12.173-46.749zM202.781 23.07c-18.121.065-27.604 12.133-30.614 23.375-3.566 13.33 3.53 23.375 16.507 23.375h8.696l2.546-9.513h-8.693c-4.857 0-11.536-3.822-8.844-13.862 2.138-7.98 9.919-13.86 18.454-13.86h5.522l2.551-9.514z"/></g>
</svg>
)
import { AsicsLogo } from "@/assets/icons/asicsLogo"
export default function Example() {
return <AsicsLogo 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.