@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 638 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 Brightness3Icon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M9,2C7.95,2 6.95,2.16 6,2.46C10.06,3.73 13,7.5 13,12C13,16.5 10.06,20.27 6,21.54C6.95,21.84 7.95,22 9,22C14.52,22 19,17.52 19,12C19,6.48 14.52,2 9,2Z' />
</Svg>
)
Brightness3Icon.displayName = 'Brightness3Icon'
Brightness3Icon.defaultProps = {
size: 24
}
export default Brightness3Icon