import { Box, SxProps, Theme } from "@mui/material"; interface Props { sx?: SxProps; } export default function RunningStripe({ sx = [] }: Props) { return ( ); }