@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 589 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 Store24HourIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M16,12H15V10H13V7H14V9H15V7H16M11,10H9V11H11V12H8V9H10V8H8V7H11M19,7V4H5V7H2V20H10V16H14V20H22V7H19Z' />
</Svg>
)
Store24HourIcon.displayName = 'Store24HourIcon'
Store24HourIcon.defaultProps = {
size: 24
}
export default Store24HourIcon