@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 PauseOctagonOutlineIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M15,16H13V8H15V16M11,16H9V8H11V16M15.73,3L21,8.27V15.73L15.73,21H8.27L3,15.73V8.27L8.27,3H15.73M14.9,5H9.1L5,9.1V14.9L9.1,19H14.9L19,14.9V9.1L14.9,5Z' />
</Svg>
)
PauseOctagonOutlineIcon.displayName = 'PauseOctagonOutlineIcon'
PauseOctagonOutlineIcon.defaultProps = {
size: 24
}
export default PauseOctagonOutlineIcon