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