import type React from "react" import { View } from "react-native" import Svg, { Path } from "react-native-svg" interface IconProps { color: string size: number } const TruckIcon: React.FC = ({ color, size }) => { return ( ) } export default TruckIcon