Files
Developers Digest 836b085f75 continue re-design
2025-09-05 13:06:17 -04:00

20 lines
399 B
TypeScript

export default function CopiedIcon() {
return (
<svg
fill="none"
height="20"
viewBox="0 0 20 20"
width="20"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M5.1875 10.974L8.075 13.8959L14.8125 6.10425"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="1.25"
/>
</svg>
);
}