@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 680 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 FormatTextRotationNoneIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M20.5,18L17.5,21V19H5V17H17.5V15L20.5,18M10.13,10H13.88L12,4.97L10.13,10M12.75,3L17.5,14H15.42L14.5,11.81H9.5L8.58,14H6.5L11.25,3H12.75Z' />
</Svg>
)
FormatTextRotationNoneIcon.displayName = 'FormatTextRotationNoneIcon'
FormatTextRotationNoneIcon.defaultProps = {
size: 24
}
export default FormatTextRotationNoneIcon