| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- import React from 'react'
- import styled from 'styles'
-
- export default function Cursor({
- color = 'dodgerblue',
- point = [0, 0],
- }: {
- color?: string
- point: number[]
- }): JSX.Element {
- const transform = `translate(${point[0] - 12} ${point[1] - 10})`
-
- return (
- <StyledCursor
- color={color}
- transform={transform}
- width="35px"
- height="35px"
- viewBox="0 0 35 35"
- version="1.1"
- pointerEvents="none"
- xmlns="http://www.w3.org/2000/svg"
- xmlnsXlink="http://www.w3.org/1999/xlink"
- >
- <path
- d="M12,24.4219 L12,8.4069 L23.591,20.0259 L16.81,20.0259 L16.399,20.1499 L12,24.4219 Z"
- fill="#ffffff"
- />
- <path
- d="M21.0845,25.0962 L17.4795,26.6312 L12.7975,15.5422 L16.4835,13.9892 L21.0845,25.0962 Z"
- fill="#ffffff"
- />
- <path
- d="M19.751,24.4155 L17.907,25.1895 L14.807,17.8155 L16.648,17.0405 L19.751,24.4155 Z"
- fill="currentColor"
- />
- <path
- d="M13,10.814 L13,22.002 L15.969,19.136 L16.397,18.997 L21.165,18.997 L13,10.814 Z"
- fill="currentColor"
- />
- </StyledCursor>
- )
- }
-
- const StyledCursor = styled('g', {
- position: 'absolute',
- zIndex: 1000,
- top: 0,
- left: 0,
- })
|