mirror of
https://github.com/usebruno/bruno.git
synced 2024-12-03 21:34:36 +01:00
18 lines
374 B
JavaScript
18 lines
374 B
JavaScript
import styled from 'styled-components';
|
|
|
|
const StyledWrapper = styled.div`
|
|
.spinner {
|
|
display: inline-block;
|
|
width: 2rem;
|
|
height: 2rem;
|
|
vertical-align: text-bottom;
|
|
border: 0.25em solid currentColor;
|
|
border-right-color: transparent;
|
|
border-radius: 50%;
|
|
animation: spinner-border .75s linear infinite;
|
|
}
|
|
`;
|
|
|
|
export default StyledWrapper;
|
|
|