@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 564 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 PulseIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M3,13H5.79L10.1,4.79L11.28,13.75L14.5,9.66L17.83,13H21V15H17L14.67,12.67L9.92,18.73L8.94,11.31L7,15H3V13Z' />
</Svg>
)
PulseIcon.displayName = 'PulseIcon'
PulseIcon.defaultProps = {
size: 24
}
export default PulseIcon