blob: 07cae351fa9692929a6039e2145f9f09de8393b2 [file] [log] [blame]
import React, { forwardRef } from 'react'
import { Paper, PaperProps, Stack, Typography, Button } from '@mui/material'
import { grey } from '@mui/material/colors'
interface AbnormalTopicCountProps extends PaperProps {}
const AbnormalTopicCount = forwardRef<typeof Paper, AbnormalTopicCountProps>(
({ ...props }, ref) => {
return (
<Paper
sx={{
width: 1,
py: 1,
px: 2,
borderRadius: 4,
boxShadow: '2px 2px 40px 2px rgba(0,0,0,.05)',
display: 'flex',
flexDirection: 'column'
}}>
<Stack
direction="row"
justifyContent="space-between"
alignItems="center">
<Typography
paragraph
variant="caption"
sx={{ m: 0 }}
fontWeight="bold"
color={grey[600]}>
异常状态 Topic 数量
</Typography>
<Button size="small">查看详情</Button>
</Stack>
<Typography
paragraph
variant="h6"
color="primary"
sx={{ m: 0, fontWeight: 'bold', color: '#43497a' }}>
5
</Typography>
</Paper>
)
}
)
AbnormalTopicCount.displayName = 'AbnormalTopicCount'
export default AbnormalTopicCount