mirror of
https://github.com/usebruno/bruno.git
synced 2025-05-05 15:32:58 +00:00
9 lines
200 B
JavaScript
9 lines
200 B
JavaScript
import styled from 'styled-components';
|
|
|
|
const StyledWrapper = styled.div`
|
|
color: ${(props) => props.theme.text};
|
|
background-color: ${(props) => props.theme.bg};
|
|
`;
|
|
|
|
export default StyledWrapper;
|