@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 819 B
JavaScript
import React from 'react'
import styled from 'styled-components'
import { space, color } from 'styled-system'
const Svg = styled('svg')({ flex: 'none' }, space, color)
const CursorPointerIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M13.75,10.19L14.38,10.32L18.55,12.4C19.25,12.63 19.71,13.32 19.65,14.06V14.19L19.65,14.32L18.75,20.44C18.69,20.87 18.5,21.27 18.15,21.55C17.84,21.85 17.43,22 17,22H10.12C9.63,22 9.18,21.82 8.85,21.47L2.86,15.5L3.76,14.5C4,14.25 4.38,14.11 4.74,14.13H5.03L9,15V4.5C9,3.4 9.9,2.5 11,2.5C12.1,2.5 13,3.4 13,4.5V10.19H13.75Z' />
</Svg>
)
CursorPointerIcon.displayName = 'CursorPointerIcon'
CursorPointerIcon.defaultProps = {
size: 24
}
export default CursorPointerIcon