How to use the Belgium icon
import { BelgiumFlag } from "@/assets/icons/belgiumFlag"
export default function Example() {
return <BelgiumFlag width="32px" height="32px" />
}Flags icon
Copy the Belgium icon as an optimized JSX SVG component for React, Next.js, dashboards, landing pages and Tailwind interfaces.
Copy-ready code
export const BelgiumFlag = ({ width = "40px", height = "40px", ...props }) => (
<svg {...props} width={width} height={height} viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" xmlnsXlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" preserveAspectRatio="xMidYMid meet">
<path d="M62 32c0-13.1-8.3-24.2-20-28.3v56.6C53.7 56.2 62 45.1 62 32" fill="#ed4c5c"></path>
<path d="M2 32c0 13.1 8.4 24.2 20 28.3V3.7C10.4 7.8 2 18.9 2 32z" fill="#3e4347"></path>
<path d="M42 3.7C38.9 2.6 35.5 2 32 2s-6.9.6-10 1.7v56.6c3.1 1.1 6.5 1.7 10 1.7s6.9-.6 10-1.7V3.7z" fill="#ffe62e"></path>
</svg>
);
import { BelgiumFlag } from "@/assets/icons/belgiumFlag"
export default function Example() {
return <BelgiumFlag 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.