@zh5/react-native-remix-icon
Version:
Remix Icon for React Native
9 lines (8 loc) • 494 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgBikeLine = props => (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path d="M5.5 12H4V7H2V5h6v2H6v2.796l9.813-2.63L15.233 5H12V3h3.978a1 1 0 0 1 .988.741l1.553 5.796-1.932.518-.256-.957L5.5 12ZM5 19a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm0 2a4 4 0 1 1 0-8 4 4 0 0 1 0 8Zm13-2a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm0 2a5 5 0 1 1 0-10 5 5 0 0 1 0 10Z" />
</Svg>
);
export default SvgBikeLine;