How to use the Joma icon
import { JomaLogo } from "@/assets/icons/jomaLogo"
export default function Example() {
return <JomaLogo width="32px" height="32px" />
}Brands icon
Copy the Joma 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/1178991571
// Asset license: Public domain textlogo
// Optimized, converted to monochrome currentColor JSX, and parameterized by JSXIcons.
export const JomaLogo = ({ width = "40px", height = "40px", color = "#000000", ...props }) => (
<svg {...props} width={width} height={height} viewBox="0 0 6507.74 1665.44" xmlns="http://www.w3.org/2000/svg" fill={color} color={color}>
<g><path d="M293.69 1.79v241.76c157.59 0 245.31 14.32 245.31 179.08v890c0 59.1-23.28 141.47-120 141.47-59.1 0-91.33-32.23-107.45-69.84 59.09-35.81 100.28-102.07 100.28-177.29 0-114.61-93.12-205.94-205.94-205.94-111 0-202.36 89.54-205.94 200.57v9c1.79 116.4 51.93 454.86 487.1 454.86 442.32 0 496.05-291.9 496.05-512.17V397.56c0-94.92 73.42-154 225.64-154V1.79ZM3468.77 1027.92c0 96.7-14.33 141.47-136.1 141.47v236.38h745v-236.38c-155.8 0-159.38-116.4-159.38-191.62 0 0-1.79-308-1.79-431.58 0-89.54 78.79-256.08 238.17-256.08 171.92 0 225.64 152.22 225.64 240v496c0 96.71-62.68 141.48-184.45 141.48V1404h793.32v-234.61c-188 0-205.94-116.4-205.94-191.62V435.16c0-82.37 8.95-132.52-32.23-216.68 0 0-87.75-209.53-426.21-209.53-315.18 0-417.26 209.53-417.26 209.53S3819.76 9 3479.51 9c-315.18 0-399.35 177.29-399.35 177.29V1.79h-633.94v241.76c157.59 0 225.64 41.19 225.64 177.29v587.38c0 94.91-73.42 154-225.64 154V1404h798.7v-234.61c-93.12 0-161.17-44.77-161.17-161.17V524.7c0-130.73 60.88-240 184.45-240 127.14 0 200.57 112.82 200.57 247.13Z"/><path d="M1823 0c-392.19 0-710.95 318.76-710.95 711s318.76 710.94 711 710.94S2534 1103.13 2534 711c-1.82-392.24-318.79-711-711-711m19.7 1180.13c-195.17 0-293.7-211.31-293.7-469.13 0-259.67 94.91-469.19 293.69-469.19 191.61 0 293.69 209.52 293.69 469.19s-100.29 469.18-293.69 469.18M6350.15 877.49v186.24c0 60.89-17.9 105.66-71.63 105.66s-60.88-55.52-60.88-102.08V580.22c0-191.62 69.84-569.48-621.41-569.48-343.83 0-530.07 159.39-530.07 379.65 0 114.61 93.12 209.53 209.52 209.53 114.61 0 209.52-93.13 209.52-209.53a207.06 207.06 0 0 0-60.89-146.84s343.84-78.8 386.82 141.47c32.23 168.34-68.05 197-164.76 218.48S5068 651.85 5025 954.49c-41.19 281.16 120 460.24 404.72 460.24 286.52 0 392.18-166.55 392.18-166.55s93.12 166.55 340.25 166.55 345.62-166.55 345.62-291.9V877.49Zm-549.77 46.56c0 118.19-69.84 232.8-207.73 232.8s-223.85-136.1-130.73-254.29c93.12-120 338.46-148.64 338.46-148.64Z"/></g>
</svg>
)
import { JomaLogo } from "@/assets/icons/jomaLogo"
export default function Example() {
return <JomaLogo 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.