How to use the Jordan Flag icon
import { JordanFlag } from "@/assets/icons/jordanFlag"
export default function Example() {
return <JordanFlag width="32px" height="32px" />
}Flags icon
Copy the Jordan Flag icon as an optimized JSX SVG component for React, Next.js, dashboards, landing pages and Tailwind interfaces.
Copy-ready code
// Source: https://raw.githubusercontent.com/lipis/flag-icons/086f7e97d657358203916dbe84f61c2bccaa81eb/flags/4x3/jo.svg
// Asset license: flag-icons MIT. Country flags are national symbols; use respectfully and verify local requirements where applicable.
export const JordanFlag = ({ width = "40px", height = "30px", ...props }) => (
<svg {...props} width={width} height={height} viewBox="0 0 640 480" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" preserveAspectRatio="xMidYMid meet">
<defs>
<clipPath id="jo-a">
<path fillOpacity=".7" d="M-117.8 0h682.6v512h-682.6z"/>
</clipPath>
</defs>
<g clipPath="url(#jo-a)" transform="translate(110.5)scale(.9375)">
<g fillRule="evenodd" strokeWidth="1pt">
<path fill="#000001" d="M-117.8 0h1024v170.7h-1024z"/>
<path fill="#fff" d="M-117.8 170.7h1024v170.6h-1024z"/>
<path fill="#090" d="M-117.8 341.3h1024V512h-1024z"/>
<path fill="red" d="m-117.8 512 512-256-512-256z"/>
<path fill="#fff" d="m24.5 289 5.7-24.9H4.7l23-11-15.9-19.9 23 11 5.6-24.8 5.7 24.9L69 233.2l-16 19.9 23 11H50.6l5.7 24.9-15.9-20z"/>
</g>
</g>
</svg>
)
import { JordanFlag } from "@/assets/icons/jordanFlag"
export default function Example() {
return <JordanFlag 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 flags 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.