@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 TimerSandEmptyIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M6,2V8H6V8L10,12L6,16V16H6V22H18V16H18V16L14,12L18,8V8H18V2H6M16,16.5V20H8V16.5L12,12.5L16,16.5M12,11.5L8,7.5V4H16V7.5L12,11.5Z' />
</Svg>
)
TimerSandEmptyIcon.displayName = 'TimerSandEmptyIcon'
TimerSandEmptyIcon.defaultProps = {
size: 24
}
export default TimerSandEmptyIcon