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

40 lines
1,018 B
TypeScript

import * as React from "react";
import Svg, { SvgProps, Circle, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgMoonSat(
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={10} stroke="currentColor" />
<Path
d="M7.633 3.067A3.001 3.001 0 114.017 6.32M22 13.05a3.5 3.5 0 10-3 5.914"
stroke="currentColor"
/>
<Path
d="M14.5 8.51l.01-.011M10 17a2 2 0 100-4 2 2 0 000 4z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgMoonSat);
export default ForwardRef;