@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
12 lines (11 loc) • 503 B
JavaScript
import { memo } from 'react';
import Svg, { Rect, Circle } from 'react-native-svg';
const Icon = memo((_props) => {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill="none" viewBox="0 0 65 64" width={size} height={size} {...props}>
<Rect width={64} height={64} x={0.5} fill={color} rx={32}/>
<Circle cx={32.5} cy={32} r={26} fill={color} stroke="#222" strokeWidth={2}/>
</Svg>);
});
Icon.displayName = 'CameraShutter';
export const CameraShutter = Icon;