forked from sombochea/verdaccio-ui
fix: spinner typings
This commit is contained in:
parent
626bcce5cb
commit
3166673875
@ -3,13 +3,16 @@ import styled, { css } from 'react-emotion';
|
||||
|
||||
import colors from '../../utils/styles/colors';
|
||||
|
||||
interface WrapperProps {
|
||||
centered: boolean;
|
||||
}
|
||||
|
||||
export const Wrapper = styled('div')`
|
||||
&& {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
${props =>
|
||||
// @ts-ignore
|
||||
${(props: WrapperProps) =>
|
||||
props.centered &&
|
||||
css`
|
||||
position: absolute;
|
||||
|
Loading…
Reference in New Issue
Block a user