@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 678 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 LighthouseOnIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M1,10V2L10,5V7L1,10M8,10V8H13V4H8V3L12,1L16,3V4H15V8H16V10H14.74L8.44,13.64L9,10H8M7,23L7.04,22.76L16.15,17.5L16.67,20.88L13,23H7M8.05,16.17L15.31,12L15.83,15.37L7.43,20.22L8.05,16.17Z' />
</Svg>
)
LighthouseOnIcon.displayName = 'LighthouseOnIcon'
LighthouseOnIcon.defaultProps = {
size: 24
}
export default LighthouseOnIcon