mirror of
https://github.com/usebruno/bruno.git
synced 2026-07-09 06:55:03 +00:00
22 lines
447 B
JavaScript
22 lines
447 B
JavaScript
import styled from 'styled-components';
|
|
|
|
const Wrapper = styled.div`
|
|
font-size: 0.75rem;
|
|
font-weight: 600;
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
&.text-ok {
|
|
color: ${(props) => props.theme.requestTabPanel.responseOk};
|
|
}
|
|
|
|
&.text-pending {
|
|
color: ${(props) => props.theme.requestTabPanel.responsePending};
|
|
}
|
|
|
|
&.text-error {
|
|
color: ${(props) => props.theme.requestTabPanel.responseError};
|
|
}
|
|
`;
|
|
|
|
export default Wrapper;
|