How to use the Colombia icon
import { ColombiaFlag } from "@/assets/icons/colombiaFlag"
export default function Example() {
return <ColombiaFlag width="32px" height="32px" />
}Flags icon
Copy the Colombia icon as an optimized JSX SVG component for React, Next.js, dashboards, landing pages and Tailwind interfaces.
Copy-ready code
export const ColombiaFlag = ({ 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 32H2c0 5.5 1.5 10.6 4 15h52c2.6-4.4 4-9.5 4-15" fill="#2a5f9e"></path>
<path d="M32 2C15.5 2 2 15.4 2 32h60C62 15.4 48.6 2 32 2z" fill="#ffe62e"></path>
<path d="M32 62c11.1 0 20.8-6 26-15H6c5.3 9 14.9 15 26 15" fill="#ed4c5c"></path>
</svg>
);
import { ColombiaFlag } from "@/assets/icons/colombiaFlag"
export default function Example() {
return <ColombiaFlag 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.