import React from 'react'; import Svg, { Path, SvgProps } from 'react-native-svg'; const Eraser = (props: SvgProps) => ( ); const MemoEraser = React.memo(Eraser); export default MemoEraser;