| 1 |
import React from 'react' |
| 2 |
import type { SVGProps } from 'react' |
| 3 |
|
| 4 |
export const CopyIcon: React.FC<SVGProps<SVGSVGElement>> = props => |
| 5 |
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}> |
| 6 |
<path |
| 7 |
d="M12 6V4.5C12 4.10218 11.842 3.72064 11.5607 3.43934C11.2794 3.15804 10.8978 3 10.5 3H4.5C4.10218 3 3.72064 3.15804 3.43934 3.43934C3.15804 3.72064 3 4.10218 3 4.5V10.5C3 10.8978 3.15804 11.2794 3.43934 11.5607C3.72064 11.842 4.10218 12 4.5 12H6M6 7.5C6 7.10218 6.15804 6.72065 6.43934 6.43934C6.72065 6.15804 7.10218 6 7.5 6H13.5C13.8978 6 14.2794 6.15804 14.5607 6.43934C14.842 6.72065 15 7.10218 15 7.5V13.5C15 13.8978 14.842 14.2794 14.5607 14.5607C14.2794 14.842 13.8978 15 13.5 15H7.5C7.10218 15 6.72065 14.842 6.43934 14.5607C6.15804 14.2794 6 13.8978 6 13.5V7.5Z" |
| 8 |
stroke="#F0F0F0" |
| 9 |
strokeWidth="1.5" |
| 10 |
strokeLinecap="round" |
| 11 |
strokeLinejoin="round" |
| 12 |
/> |
| 13 |
</svg> |
| 14 |
|