source: sources/client/src/components/Loaders/BackdropLoader/styles.js@ bc20307

Last change on this file since bc20307 was bc20307, checked in by Tasevski2 <39170279+Tasevski2@…>, 2 years ago

Push before video

  • Property mode set to 100644
File size: 290 bytes
Line 
1import styled from 'styled-components';
2import CircularProgress from '@mui/material/CircularProgress';
3
4export const Loader = styled(CircularProgress).attrs({
5 sx: {
6 zIndex: 1001,
7 },
8})`
9 .MuiCircularProgress-svg {
10 color: ${(props) => props.theme.palette.primary.light};
11 }
12`;
Note: See TracBrowser for help on using the repository browser.