@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 692 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 FormatFontSizeDecreaseIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M5.12,14L7.5,7.67L9.87,14M6.5,5L1,19H3.25L4.37,16H10.62L11.75,19H14L8.5,5H6.5M18,17L23,11.93L21.59,10.5L19,13.1V7H17V13.1L14.41,10.5L13,11.93L18,17Z' />
</Svg>
)
FormatFontSizeDecreaseIcon.displayName = 'FormatFontSizeDecreaseIcon'
FormatFontSizeDecreaseIcon.defaultProps = {
size: 24
}
export default FormatFontSizeDecreaseIcon