@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 782 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 TurnstileOutlineIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M13.41,10.41C13.04,10.79 12.53,11 12,11C10.9,11 10,10.1 10,9C10,8.47 10.21,7.96 10.59,7.59L9.17,6.17C8.42,6.92 8,7.94 8,9H2V11H8.55C8.9,11.6 9.4,12.1 10,12.45V19H12V13C13.06,13 14.08,12.58 14.83,11.83L13.41,10.41M10,2V5L16,11V22H22V2H10M20,20H18V10.17L12,4.17V4H20V20Z' />
</Svg>
)
TurnstileOutlineIcon.displayName = 'TurnstileOutlineIcon'
TurnstileOutlineIcon.defaultProps = {
size: 24
}
export default TurnstileOutlineIcon