styled.ts 216 B

123456789101112
  1. import styled from 'styled-components';
  2. export const SVG = styled.svg`
  3. position: absolute;
  4. cursor: pointer;
  5. z-index: 10;
  6. touch-action: none;
  7. `;
  8. export const Circle = styled.circle`
  9. cursor: all-scroll;
  10. `;