You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
1.2 KiB
19 lines
1.2 KiB
import React from'react'; |
|
import { Svg, Path } from'react-native-svg'; |
|
|
|
const InTransitIcon = ({size}:{size:number}) => { |
|
return ( |
|
<Svg |
|
viewBox="0 0 1024 1024" |
|
width={size} |
|
height={size} |
|
> |
|
<Path |
|
d="M25.6 212.096a38.4 38.4 0 0 1 38.4-38.4h597.333333a38.4 38.4 0 0 1 38.4 38.4V350.293333h147.328c17.621333 0 38.4 8.192 49.152 29.44l93.397334 181.973334c3.413333 5.546667 8.789333 16.085333 8.789333 29.397333v60.501333a38.4 38.4 0 0 1-38.4 38.4h-37.077333a138.154667 138.154667 0 0 1-132.906667 174.976 137.941333 137.941333 0 0 1-135.04-166.4H356.906667a137.941333 137.941333 0 1 1-270.037334 0H64a38.4 38.4 0 0 1-38.4-38.4v-448z m107.136 409.6a137.386667 137.386667 0 0 1 89.173333-32.64 137.386667 137.386667 0 0 1 89.130667 32.64h311.893333v-371.2H102.4v371.2h30.336z m566.997333 0.981333a137.386667 137.386667 0 0 1 90.282667-33.621333c28.928 0 55.765333 8.874667 77.909333 24.106667H921.6V597.333333l-87.381333-170.24H699.733333v195.584zM221.866667 665.856a61.141333 61.141333 0 1 0 0 122.282667 61.141333 61.141333 0 0 0 0-122.282667z m568.149333 0a61.141333 61.141333 0 1 0 0 122.282667 61.141333 61.141333 0 0 0 0-122.282667z" |
|
fill="#707070" |
|
/> |
|
</Svg> |
|
); |
|
}; |
|
|
|
export default InTransitIcon; |