mirror of
https://github.com/usebruno/bruno.git
synced 2026-07-09 06:55:03 +00:00
18 lines
347 B
JavaScript
18 lines
347 B
JavaScript
import styled from 'styled-components';
|
|
|
|
const StyledWrapper = styled.div`
|
|
.test-success {
|
|
color: ${(props) => props.theme.colors.text.green};
|
|
}
|
|
|
|
.test-failure {
|
|
color: ${(props) => props.theme.colors.text.danger};
|
|
}
|
|
|
|
.error-message {
|
|
color: ${(props) => props.theme.colors.text.muted};
|
|
}
|
|
`;
|
|
|
|
export default StyledWrapper;
|