@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 932 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 FileSearchIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M14,2H6C4.9,2 4,2.9 4,4V20C4,21.1 4.9,22 6,22H13C12.59,21.75 12.2,21.44 11.86,21.1C9.22,18.67 9.05,14.56 11.5,11.92C13.69,9.5 17.33,9.13 20,11V8L14,2M13,9V3.5L18.5,9H13M20.31,18.9C21.64,16.79 21,14 18.91,12.68C16.8,11.35 14,12 12.69,14.08C11.35,16.19 12,18.97 14.09,20.3C15.55,21.23 17.41,21.23 18.88,20.32L22,23.39L23.39,22L20.31,18.9M16.5,19C15.12,19 14,17.88 14,16.5C14,15.12 15.12,14 16.5,14C17.88,14 19,15.12 19,16.5C19,17.88 17.88,19 16.5,19Z' />
</Svg>
)
FileSearchIcon.displayName = 'FileSearchIcon'
FileSearchIcon.defaultProps = {
size: 24
}
export default FileSearchIcon