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

60 lines
1.5 KiB
TypeScript
Raw Normal View History

import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
2022-03-10 21:00:39 +01:00
function SvgThreePointsCircle(
passedProps: SvgProps,
2022-03-10 21:00:39 +01:00
svgRef?: React.Ref<React.Component<SvgProps>>
) {
const context = React.useContext(IconoirContext);
const props = { ...context, ...passedProps };
2022-03-10 21:00:39 +01:00
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
2022-04-23 15:48:44 +02:00
strokeWidth={1.5}
2022-03-10 21:00:39 +01:00
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M12 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"
/>
<Path
2022-04-23 15:48:44 +02:00
d="M5 6a1 1 0 100-2 1 1 0 000 2z"
fill="currentColor"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M5 10.5V9M5 15v-1.5"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M5 20a1 1 0 100-2 1 1 0 000 2zM19 20a1 1 0 100-2 1 1 0 000 2z"
2022-03-10 21:00:39 +01:00
fill="currentColor"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
2022-04-23 15:48:44 +02:00
d="M10.5 19H9M15 19h-1.5"
2022-03-10 21:00:39 +01:00
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgThreePointsCircle);
export default ForwardRef;