developers.urbit.org/components/icons/ringsig.js
2022-08-19 19:42:18 +12:00

21 lines
444 B
JavaScript

export default function Ringsig({ className }) {
return (
<svg
width="80"
height="80"
fill="none"
viewBox="0 0 80 80"
xmlns="http://www.w3.org/2000/svg"
>
<rect width="80" height="80" rx="10" className="fill-purple opacity-60" />
<circle
cx="40.6816"
cy="40"
r="24"
className="stroke-white dark:stroke-black"
strokeWidth="2"
/>
</svg>
);
}