@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 556 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 SkewMoreIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M12.5,11L10.41,20H5.5L7.59,11H12.5M15,9H6L3,22H12L15,9M21,6L17,2V5H9V7H17V10L21,6Z' />
</Svg>
)
SkewMoreIcon.displayName = 'SkewMoreIcon'
SkewMoreIcon.defaultProps = {
size: 24
}
export default SkewMoreIcon