mirror of
https://github.com/usebruno/bruno.git
synced 2024-12-02 04:43:54 +01:00
10 lines
166 B
JavaScript
10 lines
166 B
JavaScript
|
import styled from 'styled-components';
|
||
|
|
||
|
const Wrapper = styled.div`
|
||
|
font-size: 0.75rem;
|
||
|
font-weight: 600;
|
||
|
color: rgb(117 117 117);
|
||
|
`;
|
||
|
|
||
|
export default Wrapper;
|