import * as React from 'react'; import styled, { keyframes } from 'styled-components'; import { Durations, Easings, Colors } from '@settings/all'; const LoaderSpin = keyframes` 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } `; export const LoaderSpinner = styled(props => ( ))` display: block; width: 1.5em; height: 1.5em; max-width: 100%; max-height: 100%; animation: ${LoaderSpin} ${Durations.timeLong}s infinite ${Easings.easeInOut}; * { stroke: ${Colors.text}; } ` const LoaderInner = styled.div` position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); ` export const Loader = styled(props => (
))` position: absolute; width: 100%; height: 100%; left: 0; top: 0; background: rgba(0,0,0,0.5); `;