styled.ts 200 B

1234567891011
  1. import styled from 'styled-components';
  2. export const TextWrapper = styled.div`
  3. width: 324px;
  4. margin-bottom: 16px;
  5. `;
  6. export const BtnWrapper = styled.div`
  7. width: 100%;
  8. text-align: right;
  9. `;