@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 651 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 Brightness6Icon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M12,18V6C15.31,6 18,8.69 18,12C18,15.31 15.31,18 12,18M20,15.31L23.31,12L20,8.69V4H15.31L12,0.69L8.69,4H4V8.69L0.69,12L4,15.31V20H8.69L12,23.31L15.31,20H20V15.31Z' />
</Svg>
)
Brightness6Icon.displayName = 'Brightness6Icon'
Brightness6Icon.defaultProps = {
size: 24
}
export default Brightness6Icon