react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 488 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgGeminiFill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M24 12.024C17.563 12.412 12.41 17.563 12.023 24h-.047C11.588 17.563 6.436 12.412 0 12.024v-.047C6.437 11.588 11.588 6.437 11.976 0h.047c.388 6.437 5.54 11.588 11.977 11.977z" />
</Svg>
);
export default SvgGeminiFill;