@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 812 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 HumanFemaleBoyIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M7.5,2C8.6,2 9.5,2.9 9.5,4C9.5,5.1 8.6,6 7.5,6C6.4,6 5.5,5.1 5.5,4C5.5,2.9 6.4,2 7.5,2M6,22V16H3L5.6,8.4C5.9,7.6 6.6,7 7.5,7C8.4,7 9.2,7.6 9.4,8.4L12,16H9V22H6M14.5,12C14.5,10.9 15.4,10 16.5,10C17.6,10 18.5,10.9 18.5,12C18.5,13.1 17.6,14 16.5,14C15.4,14 14.5,13.1 14.5,12M13.5,15H19.5V19H18V22H15V19H13.5V15Z' />
</Svg>
)
HumanFemaleBoyIcon.displayName = 'HumanFemaleBoyIcon'
HumanFemaleBoyIcon.defaultProps = {
size: 24
}
export default HumanFemaleBoyIcon