@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 631 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 Brightness2Icon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M10,2C8.18,2 6.47,2.5 5,3.35C8,5.08 10,8.3 10,12C10,15.7 8,18.92 5,20.65C6.47,21.5 8.18,22 10,22C15.52,22 20,17.52 20,12C20,6.48 15.52,2 10,2Z' />
</Svg>
)
Brightness2Icon.displayName = 'Brightness2Icon'
Brightness2Icon.defaultProps = {
size: 24
}
export default Brightness2Icon