@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 582 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 RayEndIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M20,9C18.69,9 17.58,9.83 17.17,11H2V13H17.17C17.58,14.17 18.69,15 20,15C21.66,15 23,13.66 23,12C23,10.34 21.66,9 20,9Z' />
</Svg>
)
RayEndIcon.displayName = 'RayEndIcon'
RayEndIcon.defaultProps = {
size: 24
}
export default RayEndIcon