import { Alert, Text } from '@mantine/core'
import { IconInfoCircle } from '@tabler/icons-react'
export default function NoIncidentsAlert({ style }: { style?: React.CSSProperties }) {
return (
}
title={
{'No incidents in this month'}
}
color="gray"
withCloseButton={false}
style={{
position: 'relative',
margin: '16px auto 0 auto',
...style,
}}
>
There are no incidents for this month.
)
}