@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 865 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 CameraPlusOutlineIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M21,6H17.8L16,4H10V6H15.1L17,8H21V20H5V11H3V20C3,21.1 3.9,22 5,22H21C22.1,22 23,21.1 23,20V8C23,6.9 22.1,6 21,6M8,14C8,18.45 13.39,20.69 16.54,17.54C19.69,14.39 17.45,9 13,9C10.24,9 8,11.24 8,14M13,11C14.64,11.05 15.95,12.36 16,14C15.95,15.64 14.64,16.95 13,17C11.36,16.95 10.05,15.64 10,14C10.05,12.36 11.36,11.05 13,11M5,6H8V4H5V1H3V4H0V6H3V9H5' />
</Svg>
)
CameraPlusOutlineIcon.displayName = 'CameraPlusOutlineIcon'
CameraPlusOutlineIcon.defaultProps = {
size: 24
}
export default CameraPlusOutlineIcon