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

37 lines
1.1 KiB
TypeScript

import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgBinHalf(
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="M3.04 4.294a.496.496 0 01.191-.479C3.927 3.32 6.314 2 12 2s8.073 1.32 8.769 1.815a.496.496 0 01.192.479l-1.7 12.744a4 4 0 01-1.98 2.944l-.32.183a10 10 0 01-9.922 0l-.32-.183a4 4 0 01-1.98-2.944l-1.7-12.744zM3 5c2.571 2.667 15.429 2.667 18 0M11 18l3-3.5m0 0l5 2.5m-5-2.5l6-3"
stroke="currentColor"
/>
<Path
d="M4.5 16l3.236-.462a.6.6 0 01.469.133L11 18l3 3M8 15.5l2.615-3.05a.6.6 0 01.84-.071L14 14.5"
stroke="currentColor"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgBinHalf);
export default ForwardRef;