react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 474 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgShutDownLine = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="m6.265 3.807 1.147 1.639a8 8 0 1 0 9.176 0l1.147-1.639A9.99 9.99 0 0 1 22 12c0 5.523-4.477 10-10 10S2 17.523 2 12a9.99 9.99 0 0 1 4.265-8.193M11 12V2h2v10z" />
</Svg>
);
export default SvgShutDownLine;