mirror of
https://github.com/neosubhamoy/neodlp.git
synced 2026-03-22 11:25:49 +05:30
8 lines
291 B
TypeScript
8 lines
291 B
TypeScript
export function MaximizeIcon({ className }: { className?: string }) {
|
|
return (
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" className={className}>
|
|
<path fill="currentColor" d="M3 3v10h10V3zm9 9H4V4h8z" />
|
|
</svg>
|
|
);
|
|
}
|