import { useTheme } from '@mui/system'; import { Box, BoxProps } from '../Box'; import { Loading } from '@dodoex/icons'; export interface RotatingIconProps { sx?: BoxProps['sx']; } export const RotatingIcon = ({ sx }: RotatingIconProps) => { const theme = useTheme(); return ( ); };