mirror of
https://github.com/ente-io/ente.git
synced 2025-05-25 20:33:55 +00:00
8 lines
235 B
TypeScript
8 lines
235 B
TypeScript
import CircularProgress, {
|
|
CircularProgressProps,
|
|
} from "@mui/material/CircularProgress";
|
|
|
|
export default function EnteSpinner(props: CircularProgressProps) {
|
|
return <CircularProgress color="accent" size={32} {...props} />;
|
|
}
|