import * as React from 'react' import Svg, { ClipPath, Defs, G, Path, Rect } from 'react-native-svg' import colors, { ColorValue } from 'src/styles/colors' interface Props { color?: ColorValue size?: number } const ScanIcon = ({ color = colors.contentPrimary, size = 24 }: Props) => ( ) export default ScanIcon