styled.ts 143 B

12345678
  1. import styled from 'styled-components';
  2. export const Wrapper = styled.div`
  3. touch-action: none;
  4. outline: none;
  5. `;
  6. export default Wrapper;