| 2 | import { Box, SxProps } from '@mui/material'; |
| 3 | |
| 4 | interface RotatingTextBlockProps { |
| 5 | texts: string[]; |
| 6 | rotationInterval?: number; |
| 7 | transitionDuration?: number; |
| 8 | sx?: SxProps; |
| 9 | } |
| 10 | |
| 11 | export const RotatingTextBlock: React.FC<RotatingTextBlockProps> = ({ |
| 12 | texts, |
nothing calls this directly
no outgoing calls
no test coverage detected