iconoir/packages/iconoir-react-native/src/Number8Square.tsx
2023-08-02 11:56:13 +00:00

39 lines
1 KiB
TypeScript

import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgNumber8Square(
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"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M3 20.4V3.6a.6.6 0 01.6-.6h16.8a.6.6 0 01.6.6v16.8a.6.6 0 01-.6.6H3.6a.6.6 0 01-.6-.6z"
stroke="currentColor"
/>
<Path
d="M12 16c-1.38 0-2.5-.5-2.5-2s1.12-2 2.5-2 2.5.5 2.5 2-1.12 2-2.5 2zM12 8c-1.38 0-2.5.5-2.5 2s1.12 2 2.5 2 2.5-.5 2.5-2-1.12-2-2.5-2z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgNumber8Square);
export default ForwardRef;