mirror of
https://github.com/usebruno/bruno.git
synced 2026-06-27 06:34:06 +00:00
11 lines
209 B
JavaScript
11 lines
209 B
JavaScript
import styled from 'styled-components';
|
|
|
|
const StyledWrapper = styled.div`
|
|
.editing-mode {
|
|
cursor: pointer;
|
|
color: ${(props) => props.theme.colors.text.yellow};
|
|
}
|
|
`;
|
|
|
|
export default StyledWrapper;
|