source: sources/client/src/components/Loaders/AbsoluteLoader/styles.js

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

Push before video

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