import type { SVGProps } from "react";
const Monero = (props: SVGProps<SVGSVGElement>) => (
<svg {...props} viewBox="0 0 256 256" preserveAspectRatio="xMidYMid">
<path
fill="#F60"
d="M128 0A128 128 0 0 0 7 168h38V61l83 83 83-83v107h38A128 128 0 0 0 128 0"
/>
<path
fill="#4C4C4C"
d="m109 163-36-36v68H19a128 128 0 0 0 218 0h-54v-68l-36 36-19 19-19-19Z"
/>
</svg>
);
export { Monero };
npx shadcn@latest add @svgl/moneroimport { Monero } from "@/components/monero"<Monero />