@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
14 lines (13 loc) • 630 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const Camera3Fill = /* @__PURE__ */ memo(function Camera3Fill(_props) {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M2 6c0-.552.455-1 .992-1h18.016c.548 0 .992.445.992 1v14c0 .552-.455 1-.992 1H2.992A.994.994 0 0 1 2 20zm12 12a5 5 0 1 0 0-10 5 5 0 0 0 0 10M4 7v2h3V7zm0-5h6v2H4z"/>
</Svg>);
});
/**
* Remix Icon: Camera 3 Fill
* @see {@link https://remixicon.com/icon/camera-3-fill Remix Icon Docs}
*/
export { Camera3Fill };