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

35 lines
896 B
TypeScript
Raw Normal View History

2022-11-01 20:33:24 +01:00
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
2023-01-08 13:19:52 +01:00
function SvgArrowBrCircle(
2022-11-01 20:33:24 +01:00
passedProps: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
const context = React.useContext(IconoirContext);
2023-01-11 19:09:27 +01:00
const props = {
...context,
...passedProps,
};
2022-11-01 20:33:24 +01:00
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M9.171 9.172l5.657 5.656m0 0h-4.95m4.95 0v-4.95M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
2023-01-08 13:19:52 +01:00
const ForwardRef = React.forwardRef(SvgArrowBrCircle);
2022-11-01 20:33:24 +01:00
export default ForwardRef;