@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 569 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 KeyboardReturnIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M19,7V11H5.83L9.41,7.41L8,6L2,12L8,18L9.41,16.58L5.83,13H21V7H19Z' />
</Svg>
)
KeyboardReturnIcon.displayName = 'KeyboardReturnIcon'
KeyboardReturnIcon.defaultProps = {
size: 24
}
export default KeyboardReturnIcon