iconoir/packages/iconoir-react-native/src/GoogleOne.tsx
2023-01-11 18:09:27 +00:00

41 lines
1,007 B
TypeScript

import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgGoogleOne(
passedProps: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
return (
<Svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M11 5v14a2 2 0 104 0V5a2 2 0 10-4 0z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M11.64 3.53L6.747 8.171a2 2 0 002.754 2.901l4.892-4.642a2 2 0 00-2.753-2.902z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgGoogleOne);
export default ForwardRef;