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

34 lines
924 B
TypeScript

import * as React from "react";
import Svg, { SvgProps, Circle, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgPlanetAlt(
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}
>
<Circle cx={12} cy={12} r={8} stroke="currentColor" />
<Path
d="M19.812 12.99c1.813 1.51 2.755 2.864 2.362 3.651-.731 1.467-5.805.42-11.333-2.336C5.312 11.55 1.423 8.126 2.154 6.66c.392-.786 2.033-.85 4.322-.315"
stroke="currentColor"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgPlanetAlt);
export default ForwardRef;