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

34 lines
986 B
TypeScript

import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgBeachBag(
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="M2.77 13l-.633-3.287A.6.6 0 012.727 9h18.547a.6.6 0 01.589.713L21.23 13M2.769 13h18.462M2.769 13l.616 4m17.846-4l-.616 4m0 0l-.537 3.491a.6.6 0 01-.593.509H4.515a.6.6 0 01-.593-.509L3.385 17m17.23 0H3.385"
stroke="currentColor"
/>
<Path d="M8 9V5a2 2 0 012-2h4a2 2 0 012 2v4" stroke="currentColor" />
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgBeachBag);
export default ForwardRef;