mirror of
https://github.com/usebruno/bruno.git
synced 2026-07-08 06:28:33 +00:00
13 lines
235 B
JavaScript
13 lines
235 B
JavaScript
import styled from 'styled-components';
|
|
|
|
const StyledWrapper = styled.div`
|
|
padding-top: 20%;
|
|
width: 100%;
|
|
|
|
.send-icon {
|
|
color: ${(props) => props.theme.requestTabPanel.responseSendIcon};
|
|
}
|
|
`;
|
|
|
|
export default StyledWrapper;
|