10 lines
256 B
TypeScript
10 lines
256 B
TypeScript
import { Alert, AlertIcon, AlertProps } from '@chakra-ui/react'
|
|
import React from 'react'
|
|
|
|
export const Info = (props: AlertProps) => (
|
|
<Alert status="info" bgColor={'blue.50'} rounded="md" {...props}>
|
|
<AlertIcon />
|
|
{props.children}
|
|
</Alert>
|
|
)
|