import React from "react"; import Svg, { Path } from "react-native-svg"; interface MagnifyingGlassIconProps { color?: string; width?: number; height?: number; } const MagnifyingGlassIcon: React.FC = ({ color = "#000000", width = 24, height = 24, }) => ( ); export default MagnifyingGlassIcon;