import React from 'react'; import { Stack, Alert, IconButton, HStack, VStack, CloseIcon, Text, Center, } from 'native-base'; export function Example() { const statusArray = [ { status: 'success', title: 'Selection successfully moved!', }, { status: 'error', title: 'Please try again later!', }, { status: 'info', title: 'We are going live in July!', }, { status: 'warning', title: 'Poor internet connection.', }, ]; return (
{statusArray.map((status) => { return ( {status.title} } _icon={{ color: 'coolGray.600' }} /> ); })}
); }