chore: update translations (#101)

* chore: update translations

* fix: form values type conversion

* feat: terminal fullscreen mode

* fix
This commit is contained in:
UUBulb
2025-01-19 21:09:52 +08:00
committed by GitHub
parent 53a937af4b
commit ff11783945
16 changed files with 188 additions and 168 deletions
+5
View File
@@ -6,6 +6,7 @@ import {
Clipboard,
Download,
Edit2,
Expand,
FolderClosed,
Menu,
Play,
@@ -31,6 +32,7 @@ export interface IconButtonProps extends ButtonProps {
| "upload"
| "menu"
| "ban"
| "expand"
}
export const IconButton = forwardRef<HTMLButtonElement, IconButtonProps>((props, ref) => {
@@ -82,6 +84,9 @@ export const IconButton = forwardRef<HTMLButtonElement, IconButtonProps>((props,
case "ban": {
return <BanIcon />
}
case "expand": {
return <Expand />
}
}
})()}
</Button>