2
0
Files
bot/apps/builder/src/components/AlertInfo.tsx

9 lines
215 B
TypeScript
Raw Normal View History

import { AlertProps, Alert, AlertIcon } from '@chakra-ui/react'
export const AlertInfo = (props: AlertProps) => (
<Alert status="info" rounded="md" {...props}>
<AlertIcon />
{props.children}
</Alert>
)