How to use the Grenada icon
import { GrenadaFlag } from "@/assets/icons/grenadaFlag"
export default function Example() {
return <GrenadaFlag width="32px" height="32px" />
}Flags icon
Copy the Grenada 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/gd.svg
// Asset license: flag-icons MIT. Country flags are national symbols; use respectfully and verify local requirements where applicable.
export const GrenadaFlag = ({ 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>
<g id="gd-c">
<g id="gd-b">
<path id="gd-a" fill="#fcd116" d="M0-1v1h.5" transform="rotate(18 0 -1)"/>
<use href="#gd-a" transform="scale(-1 1)"/>
</g>
<use href="#gd-b" transform="rotate(72)"/>
<use href="#gd-b" transform="rotate(144)"/>
<use href="#gd-b" transform="rotate(216)"/>
<use href="#gd-b" transform="rotate(288)"/>
</g>
</defs>
<path fill="#ce1126" d="M0 0h640v480H0z"/>
<path fill="#007a5e" d="M67.2 67.2h505.6v345.6H67.2z"/>
<path fill="#fcd116" d="M67.2 67.3h505.6L67.2 412.9h505.6z"/>
<circle cx="319.9" cy="240.1" r="57.6" fill="#ce1126"/>
<use href="#gd-c" width="100%" height="100%" transform="translate(320 240)scale(52.8)"/>
<use href="#gd-d" width="100%" height="100%" x="-100" transform="translate(-30.3)"/>
<use href="#gd-c" id="gd-d" width="100%" height="100%" transform="translate(320 33.6)scale(31.2)"/>
<use href="#gd-d" width="100%" height="100%" x="100" transform="translate(30.3)"/>
<path fill="#ce1126" d="M102.3 240.7a80 80 0 0 0 33.5 33.2 111 111 0 0 0-11.3-45z"/>
<path fill="#fcd116" d="M90.1 194.7c10.4 21.7-27.1 73.7 35.5 85.9a63 63 0 0 1-10.9-41.9 70 70 0 0 1 32.5 30.8c16.4-59.5-42-55.8-57.1-74.8"/>
<use href="#gd-d" width="100%" height="100%" x="-100" transform="translate(-30.3 414.6)"/>
<use href="#gd-c" width="100%" height="100%" transform="translate(320 448.2)scale(31.2)"/>
<use href="#gd-d" width="100%" height="100%" x="100" transform="translate(30.3 414.6)"/>
</svg>
)
import { GrenadaFlag } from "@/assets/icons/grenadaFlag"
export default function Example() {
return <GrenadaFlag 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.