/** * Created by nghinv on Fri Jul 23 2021 * Copyright (c) 2021 nghinv@lumi.biz */ import React from 'react'; import equals from 'react-fast-compare'; import { Circle, Mask, Rect } from 'react-native-svg'; import type { Point } from '@nghinv/react-native-animated'; interface MaskViewProps { radius: number, center: Point; } function MaskView(props: MaskViewProps) { const { radius, center } = props; return ( ); } export default React.memo(MaskView, equals);