@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 575 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 KeyboardTabIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M20,18H22V6H20M11.59,7.41L15.17,11H1V13H15.17L11.59,16.58L13,18L19,12L13,6L11.59,7.41Z' />
</Svg>
)
KeyboardTabIcon.displayName = 'KeyboardTabIcon'
KeyboardTabIcon.defaultProps = {
size: 24
}
export default KeyboardTabIcon