How to use the Liberia icon
import { LiberiaFlag } from "@/assets/icons/liberiaFlag"
export default function Example() {
return <LiberiaFlag width="32px" height="32px" />
}Flags icon
Copy the Liberia 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/lr.svg
// Asset license: flag-icons MIT. Country flags are national symbols; use respectfully and verify local requirements where applicable.
export const LiberiaFlag = ({ 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="lr-a">
<path fillOpacity=".7" d="M0 0h682.7v512H0z"/>
</clipPath>
</defs>
<g fillRule="evenodd" clipPath="url(#lr-a)" transform="scale(.9375)">
<path fill="#fff" d="M0 0h767.9v512H0z"/>
<path fill="#006" d="M0 0h232.7v232.8H0z"/>
<path fill="#c00" d="M0 464.9h767.9V512H0z"/>
<path fill="#c00" d="M0 465.4h767.9V512H0zm0-92.9h767.9v46.2H0zm0-93.2h766V326H0zM232.7 0h535.1v46.5H232.7zm0 186h535.1v46.8H232.7zm0-92.7h535.1v46.5H232.7z"/>
<path fill="#fff" d="m166.3 177.5-50.7-31-50.4 31.3 18.7-50.9-50.3-31.4 62.3-.4 19.3-50.7L135 95h62.3l-50.1 31.7z"/>
</g>
</svg>
)
import { LiberiaFlag } from "@/assets/icons/liberiaFlag"
export default function Example() {
return <LiberiaFlag 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.