UNPKG
@openhands/ui
Version:
latest (1.0.0-beta.9)
1.0.0-beta.9
1.0.0-beta.8
1.0.0-beta.7
1.0.0-beta.6
1.0.0-beta.5
1.0.0-beta.4
1.0.0-beta.3
1.0.0-beta.2
1.0.0-beta.1
OpenHands UI Components
www.all-hands.dev
All-Hands-AI/OpenHands
@openhands/ui
/
dist
/
components
/
toast
/
utils.d.ts
8 lines
(7 loc)
•
222 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
IconProps
}
from
'../icon/Icon'
;
type
ToastType
=
"error"
|
"success"
|
"info"
|
"warning"
;
export
declare
const
toastStyles
:
Record
<
ToastType
, {
icon
:
IconProps
[
"icon"
];
iconColor
:
string
; }>;
export
{};