1
1
mirror of https://github.com/neosubhamoy/neodlp.git synced 2026-03-22 20:35:49 +05:30

feat: implemented custom titlebar for windows and linux

This commit is contained in:
2026-02-11 19:19:17 +05:30
Verified
parent b1c176cba3
commit 24c4a640e1
12 changed files with 188 additions and 77 deletions

View File

@@ -0,0 +1,7 @@
export function MinimizeIcon({ 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="M14 8v1H3V8z" />
</svg>
);
}