@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 652 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 UnfoldLessVerticalIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M5.41,7.41L10,12L5.41,16.59L4,15.17L7.17,12L4,8.83L5.41,7.41M18.59,16.59L14,12L18.59,7.42L20,8.83L16.83,12L20,15.17L18.59,16.59Z' />
</Svg>
)
UnfoldLessVerticalIcon.displayName = 'UnfoldLessVerticalIcon'
UnfoldLessVerticalIcon.defaultProps = {
size: 24
}
export default UnfoldLessVerticalIcon