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

38 lines
941 B
TypeScript

import * as React from 'react';
import Svg, { SvgProps, Path, Circle } from 'react-native-svg';
function SvgHandBrake(
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}
>
<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;