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

42 lines
1.1 KiB
TypeScript

import * as React from "react";
import Svg, { SvgProps, Path, Circle } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgHandBrake(
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}
>
<Path
d="M12 16v-4M12 9V8"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Circle cx={12} cy={12} r={8} stroke="currentColor" />
<Path
d="M3.953 4.5A10.961 10.961 0 001 12c0 2.899 1.121 5.535 2.953 7.5M20.047 4.5A10.962 10.962 0 0123 12c0 2.899-1.121 5.535-2.953 7.5"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgHandBrake);
export default ForwardRef;