@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 596 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 AirplayIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M6,22H18L12,16M21,3H3C1.9,3 1,3.9 1,5V17C1,18.1 1.9,19 3,19H7V17H3V5H21V17H17V19H21C22.1,19 23,18.1 23,17V5C23,3.9 22.1,3 21,3Z' />
</Svg>
)
AirplayIcon.displayName = 'AirplayIcon'
AirplayIcon.defaultProps = {
size: 24
}
export default AirplayIcon