mirror of
https://github.com/usebruno/bruno.git
synced 2024-12-03 21:34:36 +01:00
9 lines
139 B
JavaScript
9 lines
139 B
JavaScript
|
import styled from 'styled-components';
|
||
|
|
||
|
const Wrapper = styled.div`
|
||
|
font-size: 0.75rem;
|
||
|
font-weight: 600;
|
||
|
`;
|
||
|
|
||
|
export default Wrapper;
|