2
0
Files
bot/apps/builder/components/shared/Info.tsx

10 lines
256 B
TypeScript
Raw Normal View History

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>
)