@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 758 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 HandPointingLeftIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M3,9H13L11.31,5.8L11.28,5.58C11.28,5.29 11.4,5.03 11.6,4.84L12.37,4.1L16.57,9C16.84,9.26 17,9.61 17,10V16.5C17,17.27 16.3,18 15.5,18H11.14C10.53,18 10,17.65 9.8,17.15L7.6,12.21L7.47,11H3C2.45,11 2,10.55 2,10C2,9.45 2.45,9 3,9M19,18V10H22V18H19Z' />
</Svg>
)
HandPointingLeftIcon.displayName = 'HandPointingLeftIcon'
HandPointingLeftIcon.defaultProps = {
size: 24
}
export default HandPointingLeftIcon