frontPanel/src/components/icons/CopyIcon.tsx

21 lines
539 B
TypeScript
Raw Normal View History

2023-04-15 09:10:59 +00:00
export default function CopyIcon() {
return (
<svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M15.75 16.5625H20.25V4.5625H8.25V9.0625"
stroke="white"
stroke-width="1.5"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M15.75 9.0625H3.75V21.0625H15.75V9.0625Z"
stroke="white"
stroke-width="1.5"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
);
}