forked from extern/bruno
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;
|