mirror of
https://github.com/usebruno/bruno.git
synced 2026-07-01 00:24:08 +00:00
12 lines
250 B
JavaScript
12 lines
250 B
JavaScript
import styled from 'styled-components';
|
|
|
|
const StyledWrapper = styled.div`
|
|
.advanced-options {
|
|
.caret {
|
|
color: ${(props) => props.theme.textLink};
|
|
fill: ${(props) => props.theme.textLink};
|
|
}
|
|
}
|
|
`;
|
|
|
|
export default StyledWrapper; |