@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 655 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 FormatAlignMiddleIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M13,6L15,4L16.42,5.42L12,9.84L7.58,5.42L9,4L11,6V2H13V6M3,11H21V13H3V11M13,18V22H11V18L9,20L7.58,18.58L12,14.16L16.42,18.58L15,20L13,18Z' />
</Svg>
)
FormatAlignMiddleIcon.displayName = 'FormatAlignMiddleIcon'
FormatAlignMiddleIcon.defaultProps = {
size: 24
}
export default FormatAlignMiddleIcon