1
0
mirror of https://github.com/usebruno/bruno.git synced 2025-06-08 22:16:57 +02:00
2022-03-07 17:52:35 +05:30

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;