How to use the Saint Kitts and Nevis icon
import { SaintKittsAndNevisFlag } from "@/assets/icons/saintkittsandnevisFlag"
export default function Example() {
return <SaintKittsAndNevisFlag width="32px" height="32px" />
}Flags icon
Copy the Saint Kitts and Nevis 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/kn.svg
// Asset license: flag-icons MIT. Country flags are national symbols; use respectfully and verify local requirements where applicable.
export const SaintKittsAndNevisFlag = ({ 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="kn-a">
<path fillOpacity=".7" d="M-80.1 0h682.7v512H-80.1z"/>
</clipPath>
</defs>
<g fillRule="evenodd" clipPath="url(#kn-a)" transform="translate(75.1)scale(.9375)">
<path fill="#ffe900" d="M-107.8.2h737.6v511.3h-737.6z"/>
<path fill="#35a100" d="m-108.2.2.8 368.6L466.6 0z"/>
<path fill="#c70000" d="m630.7 511.5-1.4-383.2-579 383.5z"/>
<path fill="#000001" d="m-107.9 396.6.5 115.4 125.3-.2 611.7-410.1L629 1.4 505.2.2z"/>
<path fill="#fff" d="m380.4 156.6-9.8-42.2 33.3 27 38-24.6-17.4 41.3 33.4 27-44.2-1.5-17.3 41.3-9.9-42.2-44.1-1.5zm-275.2 179-9.9-42.3 33.3 27 38-24.6-17.4 41.3 33.4 27-44.1-1.5-17.4 41.3-9.8-42.2-44.1-1.5z"/>
</g>
</svg>
)
import { SaintKittsAndNevisFlag } from "@/assets/icons/saintkittsandnevisFlag"
export default function Example() {
return <SaintKittsAndNevisFlag 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.