blob: f85b162593e6c91d1c72adb06a85dae20b1a3265 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
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