iconoir/packages/iconoir-react-native/src/Planet.tsx

30 lines
749 B
TypeScript

import * as React from 'react';
import Svg, { SvgProps, Circle, Path } from 'react-native-svg';
function SvgPlanet(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
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="M17.5 6.348c2.297-.538 3.945-.476 4.338.312.73 1.466-3.158 4.89-8.687 7.645-5.528 2.757-10.602 3.802-11.333 2.336-.392-.786.544-2.134 2.349-3.64"
stroke="currentColor"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgPlanet);
export default ForwardRef;