| | |
| | | import * as React from 'react'; |
| | | import { Paper, Typography, Box, Chip, Avatar } from '@mui/material'; |
| | | import { teal } from '@mui/material/colors'; |
| | | |
| | | const PulseSignal = (props) => { |
| | | const { flag = true, width = 8, ...rest } = props; |
| | |
| | | width: width, |
| | | height: width, |
| | | borderRadius: '50%', |
| | | backgroundColor: flag ? '#3f51b5' : '#f44336', |
| | | backgroundColor: flag ? `${teal[400]}` : '#f44336', |
| | | display: 'inline-block', |
| | | animation: 'pulse 1.5s infinite', |
| | | animation: 'pulse 1.2s infinite', |
| | | '@keyframes pulse': { |
| | | '0%': { |
| | | transform: 'scale(1)', |