@nature-ui/alert
v2.2.13
Published
A React component used to alert users of a particular screen area that needs user action
Downloads
51
Maintainers
Readme
Alert @nature-ui/alert
Alert
A react component used to alert users of a particular screen area that needs user action
Installation
npm i @nature-ui/alert
# or
yarn add @nature-ui/alert
Usage
import Alert from '@nature-ui/alert';
() => {
return (
<Alert status='success' alertTitle='Wow: ' variant='subtle'>
This is a success alert!
</Alert>
);
};