mirror of
https://github.com/usebruno/bruno.git
synced 2026-07-08 22:45:25 +00:00
9 lines
200 B
JavaScript
9 lines
200 B
JavaScript
import styled from 'styled-components';
|
|
|
|
const StyledWrapper = styled.div`
|
|
font-size: 0.8125rem;
|
|
color: ${(props) => props.theme.requestTabPanel.responseStatus};
|
|
`;
|
|
|
|
export default StyledWrapper;
|