mirror of
https://github.com/usebruno/bruno.git
synced 2026-07-02 08:58:32 +00:00
10 lines
181 B
JavaScript
10 lines
181 B
JavaScript
import styled from 'styled-components';
|
|
|
|
const Wrapper = styled.div`
|
|
.inherit-mode-text {
|
|
color: ${(props) => props.theme.colors.text.yellow};
|
|
}
|
|
`;
|
|
|
|
export default Wrapper;
|