@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 846 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 CameraRetakeIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M20,5H17L15,3H9L7,5H4C2.9,5 2,5.9 2,7V19C2,20.1 2.9,21 4,21H20C21.1,21 22,20.1 22,19V7C22,5.9 21.1,5 20,5M12,18C10.92,18 9.86,17.65 9,17L10.44,15.56C10.91,15.85 11.45,16 12,16C13.66,16 15,14.66 15,13C15,11.34 13.66,10 12,10C10.74,10 9.6,10.8 9.18,12H11L8,15L5,12H7.1C7.65,9.29 10.29,7.55 13,8.1C15.7,8.65 17.45,11.29 16.9,14C16.42,16.33 14.38,18 12,18Z' />
</Svg>
)
CameraRetakeIcon.displayName = 'CameraRetakeIcon'
CameraRetakeIcon.defaultProps = {
size: 24
}
export default CameraRetakeIcon