23 lines
495 B
JavaScript
23 lines
495 B
JavaScript
const ExpandIcon = () => {
|
|
return (
|
|
<svg
|
|
width="64"
|
|
height="64"
|
|
viewBox="0 0 64 64"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeWidth="4"
|
|
>
|
|
<path d="M16 16L8 8M16 16H8V8" />
|
|
<path d="M48 16L56 8M48 16H56V8" />
|
|
<path d="M16 48L8 56M16 48H8V56" />
|
|
<path d="M48 48L56 56M48 48H56V56" />
|
|
</svg>
|
|
);
|
|
};
|
|
|
|
export default ExpandIcon;
|