react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 539 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgWheelchairFill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M7.998 10.341v2.194A4 4 0 1 0 13.463 18h2.193a6 6 0 1 1-7.658-7.66m4 6.659a3 3 0 0 1-3-3v-4a3 3 0 1 1 6 0v5h1.434a2 2 0 0 1 1.626.836l.089.135 2.709 4.514-1.715 1.03L16.43 17zm0-15a2.5 2.5 0 1 1 0 5 2.5 2.5 0 0 1 0-5" />
</Svg>
);
export default SvgWheelchairFill;