16 lines
428 B
TypeScript
16 lines
428 B
TypeScript
export function SideMenuRightClosedIcon({ className }: { className?: string }) {
|
|
return (
|
|
<svg
|
|
className={className}
|
|
width="20"
|
|
height="20"
|
|
viewBox="0 0 20 20"
|
|
fill="none"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<rect x="12" y="4" width="1" height="12" fill="currentColor" />
|
|
<rect x="2.5" y="3.5" width="15" height="13" rx="2.5" stroke="currentColor" />
|
|
</svg>
|
|
);
|
|
}
|