@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 590 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 RewindOutlineIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M10,9.9L7,12L10,14.1V9.9M19,9.9L16,12L19,14.1V9.9M12,6V18L3.5,12L12,6M21,6V18L12.5,12L21,6Z' />
</Svg>
)
RewindOutlineIcon.displayName = 'RewindOutlineIcon'
RewindOutlineIcon.defaultProps = {
size: 24
}
export default RewindOutlineIcon