@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 880 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 FilterPlusOutlineIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M15,17H18V14H20V17H23V19H20V22H18V19H15V17M13,19.88C13.04,20.18 12.94,20.5 12.72,20.71C12.32,21.1 11.69,21.1 11.3,20.71L7.29,16.7C7.06,16.47 6.96,16.16 7,15.87V10.75L2.21,4.62C1.87,4.19 1.95,3.56 2.38,3.22C2.57,3.08 2.78,3 3,3V3H17V3C17.22,3 17.43,3.08 17.62,3.22C18.05,3.56 18.13,4.19 17.79,4.62L13,10.75V19.88M5.04,5L9,10.07V15.58L11,17.58V10.05L14.96,5H5.04Z' />
</Svg>
)
FilterPlusOutlineIcon.displayName = 'FilterPlusOutlineIcon'
FilterPlusOutlineIcon.defaultProps = {
size: 24
}
export default FilterPlusOutlineIcon