How to use the Austria icon
import { AustriaFlag } from "@/assets/icons/austriaFlag"
export default function Example() {
return <AustriaFlag width="32px" height="32px" />
}Flags icon
Copy the Austria icon as an optimized JSX SVG component for React, Next.js, dashboards, landing pages and Tailwind interfaces.
Copy-ready code
export const AustriaFlag = ({ 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">
<g fill="#ed4c5c">
<path d="M32 2C18.9 2 7.8 10.4 3.7 22h56.6C56.2 10.4 45.1 2 32 2z"></path>
<path d="M32 62c13.1 0 24.2-8.3 28.3-20H3.7C7.8 53.7 18.9 62 32 62z"></path>
</g>
<path d="M3.7 22C2.6 25.1 2 28.5 2 32s.6 6.9 1.7 10h56.6c1.1-3.1 1.7-6.5 1.7-10s-.6-6.9-1.7-10H3.7z" fill="#ffffff"></path>
</svg>
);
import { AustriaFlag } from "@/assets/icons/austriaFlag"
export default function Example() {
return <AustriaFlag 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.