| 123456789101112 |
- import React from 'react';
- import Svg, { Path } from 'react-native-svg';
- const VehicleType = ({size=8}) => (
- <Svg width={size} height={size} viewBox={"0 0 8 8"}>
- <Path
- fill={colorLight}
- d="M7.34219 3.44688V0.662505C7.34219 0.373443 6.97969 0.0804741 6.60391 0.0984428H1.39531C0.967188 0.0984428 0.640625 0.356255 0.657812 0.662505L0.74375 3.46329H0.09375L0.100781 5.67501L1.77188 6.78907V7.90313H6.22813V6.78907L7.89922 5.67501L7.90625 3.46251H7.25469L7.34219 3.44688ZM6.22813 3.44688H5.67109V1.77579H4.55703V3.44688H3.44297V1.77579H2.32891V3.44688H1.77188V1.21876L6.27812 1.07422V3.13672L6.22813 3.44688Z"/>
- </Svg>
- );
- export default VehicleType;
|