fix: spinner typings

This commit is contained in:
Antoine Chalifour 2019-10-03 12:57:42 +02:00 committed by antoinechalifour
parent 626bcce5cb
commit 3166673875

View File

@ -3,13 +3,16 @@ import styled, { css } from 'react-emotion';
import colors from '../../utils/styles/colors'; import colors from '../../utils/styles/colors';
interface WrapperProps {
centered: boolean;
}
export const Wrapper = styled('div')` export const Wrapper = styled('div')`
&& { && {
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
${props => ${(props: WrapperProps) =>
// @ts-ignore
props.centered && props.centered &&
css` css`
position: absolute; position: absolute;