react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 454 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgLoader3Fill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M3.055 13H5.07a7.002 7.002 0 0 0 13.858 0h2.016a9.001 9.001 0 0 1-17.89 0m0-2a9.001 9.001 0 0 1 17.89 0h-2.016A7.002 7.002 0 0 0 5.07 11z" />
</Svg>
);
export default SvgLoader3Fill;