@zh5/react-native-remix-icon
Version:
Remix Icon for React Native
9 lines (8 loc) • 555 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgAndroidFill = props => (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path d="M6.382 3.968A8.962 8.962 0 0 1 12 2c2.125 0 4.078.736 5.618 1.968l1.453-1.453 1.414 1.414-1.453 1.453A8.962 8.962 0 0 1 21 11v1H3v-1c0-2.125.736-4.078 1.968-5.618L3.515 3.93l1.414-1.414 1.453 1.453ZM3 14h18v7a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1v-7Zm6-5a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm6 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z" />
</Svg>
);
export default SvgAndroidFill;