@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 707 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 FormatTextWrappingWrapIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M7,21H5V3H7V21M19,3H17V21H19V3M13,8H9V10H12.97C13.14,10 14,10.16 14,12C14,13.84 13.14,14 13,14H11V12L8,15L11,18V16H13C14.04,16 16,15.16 16,12C16,8.84 14.04,8 13,8Z' />
</Svg>
)
FormatTextWrappingWrapIcon.displayName = 'FormatTextWrappingWrapIcon'
FormatTextWrappingWrapIcon.defaultProps = {
size: 24
}
export default FormatTextWrappingWrapIcon