@mangoui/alert
v0.0.1
Published
```javascript <Alert.Root> <Alert.StatusIcon /> <Alert.Content>This is an info alert</Alert.Content> </Alert.Root> ```
Downloads
10
Readme
Alert
기본
<Alert.Root>
<Alert.StatusIcon />
<Alert.Content>This is an info alert</Alert.Content>
</Alert.Root>타이틀
<Alert.Root>
<Alert.StatusIcon />
<Alert.Content>
<div>information</div>
<div>This is an info alert</div>
</Alert.Content>
</Alert.Root>아이콘
<Alert.Root>
<CheckIcon />
<Alert.Content>This is an custom icon alert</Alert.Content>
</Alert.Root>
<Alert.Root>
<Alert.StatusIcon
info={<CheckIcon />}
success={<SuccessIcon />}
warning={<WarningIcon />}
error={<ErrorIcon />}
/>
<Alert.Content>
This is an custom icon alert by AlertStatusIcon
</Alert.Content>
</Alert.Root>