Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | 1x 1x 1x 1x 1x | // THIS IS A GENERATED FILE, DO NOT EDIT
import * as React from 'react'
import { Icon, IconSize } from '../Icon'
const Camera = React.forwardRef<
SVGSVGElement,
{ size?: IconSize } & React.SVGAttributes<SVGElement>
>(function Camera(props, ref) {
return (
<Icon {...props} name="Camera">
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="currentColor"
xmlns="http://www.w3.org/2000/svg"
ref={ref}
>
<path
d="M12 16C13.6569 16 15 14.6569 15 13C15 11.3431 13.6569 10 12 10C10.3431 10 9 11.3431 9 13C9 14.6569 10.3431 16 12 16Z"
fill="currentColor"
/>
<path
fillRule="evenodd"
clipRule="evenodd"
d="M9 4L7 7H2V20H21.9446L22 7H17L15 4H9ZM12 17.5007C14.4785 17.5007 16.4878 15.4914 16.4878 13.0129C16.4878 10.5344 14.4785 8.52515 12 8.52515C9.52151 8.52515 7.51227 10.5344 7.51227 13.0129C7.51227 15.4914 9.52151 17.5007 12 17.5007Z"
fill="currentColor"
/>
</svg>
</Icon>
)
})
Camera.displayName = 'Camera'
export default Camera
|