aboutsummaryrefslogtreecommitdiff
path: root/vnext/src/components/Spinner.js
blob: 10a247f94da3e288d446461d1cdd817ccd8a51c1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import React from 'react';

import Icon from './Icon';

export default function Spinner(props) {
    return (
        <div id="content" style={centeredStyle}><Icon name="ei-spinner" size="m" /></div>
    )
}

const centeredStyle = {
    display: 'flex',
    justifyContent: 'center',
    alignItems: 'center'
}