import * as React from 'react' import Svg, { Path } from 'react-native-svg' import colors from 'src/styles/colors' interface Props { color?: string testID?: string size?: number } function Manage({ color = colors.accent, testID = 'Manage', size = 20 }: Props) { return ( ) } export default React.memo(Manage)