mirror of
https://github.com/usebruno/bruno.git
synced 2026-06-29 15:44:13 +00:00
8 lines
150 B
JavaScript
8 lines
150 B
JavaScript
import styled from 'styled-components';
|
|
|
|
const StyledWrapper = styled.div`
|
|
color: ${(props) => props.theme.text};
|
|
`;
|
|
|
|
export default StyledWrapper;
|