Lint all files

This commit is contained in:
jeffvli 2023-07-01 19:10:05 -07:00
parent 22af76b4d6
commit 30e52ebb54
334 changed files with 76519 additions and 75932 deletions

View file

@ -5,35 +5,35 @@ import styled from 'styled-components';
import { rotating } from '/@/renderer/styles';
interface SpinnerProps extends IconType {
color?: string;
container?: boolean;
size?: number;
color?: string;
container?: boolean;
size?: number;
}
export const SpinnerIcon = styled(RiLoader5Fill)`
${rotating}
animation: rotating 1s ease-in-out infinite;
${rotating}
animation: rotating 1s ease-in-out infinite;
`;
export const Spinner = ({ ...props }: SpinnerProps) => {
if (props.container) {
return (
<Center
h="100%"
w="100%"
>
<SpinnerIcon
color={props.color}
size={props.size}
/>
</Center>
);
}
if (props.container) {
return (
<Center
h="100%"
w="100%"
>
<SpinnerIcon
color={props.color}
size={props.size}
/>
</Center>
);
}
return <SpinnerIcon {...props} />;
return <SpinnerIcon {...props} />;
};
Spinner.defaultProps = {
color: undefined,
size: 15,
color: undefined,
size: 15,
};