mirror of
https://github.com/usebruno/bruno.git
synced 2024-12-01 20:33:28 +01:00
27 lines
901 B
JavaScript
27 lines
901 B
JavaScript
import React from 'react';
|
|
import { IconRefresh } from '@tabler/icons';
|
|
import StopWatch from '../../StopWatch';
|
|
import StyledWrapper from './StyledWrapper';
|
|
|
|
const QueryResult = () => {
|
|
return (
|
|
<StyledWrapper className="mt-4 px-3 w-full">
|
|
<div className="overlay">
|
|
<div style={{marginBottom: 15, fontSize: 26}}>
|
|
<div style={{display: 'inline-block', fontSize: 24, marginLeft: 5, marginRight: 5}}>
|
|
<StopWatch/>
|
|
</div>
|
|
</div>
|
|
<IconRefresh size={24} className="animate-spin"/>
|
|
<button
|
|
className="mt-4 uppercase bg-gray-200 active:bg-blueGray-600 text-xs px-4 py-2 rounded shadow hover:shadow-md outline-none focus:outline-none mr-1 mb-1 ease-linear transition-all duration-150" type="button"
|
|
>
|
|
Cancel Request
|
|
</button>
|
|
</div>
|
|
</StyledWrapper>
|
|
);
|
|
};
|
|
|
|
export default QueryResult;
|