@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 907 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 KeyboardOffOutlineIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M1,4.27L2.47,5.74C2.18,6.08 2,6.5 2,7V17C2,18.1 2.9,19 4,19H15.73L18.73,22L20,20.72L2.28,3L1,4.27M4,17V7.27L5,8.27V10H6.73L8,11.27V13H9.73L10.73,14H8V16H12.73L13.73,17H4M5,11H7V13H5V11M17,11H19V13H17V11M19,10H17V8H19V10M14,11H16V13H14.83L14,12.17V11M13,10H11.83L11,9.17V8H13V10M22,7V17C22,17.86 21.45,18.58 20.7,18.87L18.83,17H20V7H8.83L6.83,5H20C21.1,5 22,5.9 22,7M16,10H14V8H16V10Z' />
</Svg>
)
KeyboardOffOutlineIcon.displayName = 'KeyboardOffOutlineIcon'
KeyboardOffOutlineIcon.defaultProps = {
size: 24
}
export default KeyboardOffOutlineIcon