styled.ts 181 B

12345678910
  1. import styled from 'styled-components';
  2. export const BtnWrapper = styled.div`
  3. padding: 8px;
  4. `;
  5. export const ContentWrapper = styled.div`
  6. margin-top: 20px;
  7. display: flex;
  8. `;