diff options
author | Ana <anastasiyauraleva@gmail.com> | 2025-07-30 00:36:14 -0700 |
---|---|---|
committer | Ana <anastasiyauraleva@gmail.com> | 2025-07-30 00:36:14 -0700 |
commit | f8781270e5df1d3730192ac463331845af028b4b (patch) | |
tree | 2b07363bce1a0a262665fc016de5306a4e662854 /src | |
parent | f472c7f540840df7d98af22719742944e70ccfa2 (diff) | |
download | voidsky-f8781270e5df1d3730192ac463331845af028b4b.tar.zst |
update: toast style after lint
Diffstat (limited to 'src')
-rw-r--r-- | src/view/com/util/Toast.style.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/com/util/Toast.style.tsx b/src/view/com/util/Toast.style.tsx index 6bfb12bc1..dfa4f4fd6 100644 --- a/src/view/com/util/Toast.style.tsx +++ b/src/view/com/util/Toast.style.tsx @@ -1,7 +1,7 @@ +import {select, type Theme} from '#/alf' import {Check_Stroke2_Corner0_Rounded as SuccessIcon} from '#/components/icons/Check' import {CircleInfo_Stroke2_Corner0_Rounded as CircleInfo} from '#/components/icons/CircleInfo' import {CircleInfo_Stroke2_Corner0_Rounded as ErrorIcon} from '#/components/icons/CircleInfo' -import {type Theme, select} from '#/alf' import {Warning_Stroke2_Corner0_Rounded as WarningIcon} from '#/components/icons/Warning' export type ToastType = 'default' | 'success' | 'error' | 'warning' | 'info' |