File size: 174 Bytes
84c1942 | 1 2 3 4 5 6 7 8 9 | import styled from 'styled-components';
export const Container = styled.div`
display: flex;
justify-content: space-between;
align-items: center;
font-size: 13px;
`;
|
84c1942 | 1 2 3 4 5 6 7 8 9 | import styled from 'styled-components';
export const Container = styled.div`
display: flex;
justify-content: space-between;
align-items: center;
font-size: 13px;
`;
|