feat(FE-40): add none type to Color

This commit is contained in:
ValdiANS
2025-10-04 12:23:31 +07:00
parent d29d1f27f8
commit 777f0f5e81
+2 -1
View File
@@ -6,6 +6,7 @@ type Color =
| 'info' | 'info'
| 'success' | 'success'
| 'warning' | 'warning'
| 'error'; | 'error'
| 'none';
export { Color }; export { Color };