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

51 lines
1.3 KiB
TypeScript

import * as React from "react";
import Svg, { Path } from "react-native-svg";
import type { SvgProps } from "react-native-svg";
import { Ref, forwardRef } from "react";
import { IconoirContext } from "./IconoirContext";
const SvgAccessibilityTech = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
return (
<Svg
width="1.5em"
height="1.5em"
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
color="currentColor"
ref={ref}
{...props}
>
<Path
stroke="currentColor"
d="M3 19V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2Z"
/>
<Path
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="m12.5 12.16 4-.16-.5 4.5M11.833 12 13.5 9.538 10.833 8 9.5 9.846"
/>
<Path
fill="currentColor"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M15.5 7.5a.5.5 0 1 1 0-1 .5.5 0 0 1 0 1Z"
/>
<Path
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M10.5 18a3 3 0 1 1 0-6 3 3 0 0 1 0 6Z"
/>
</Svg>
);
};
const ForwardRef = forwardRef(SvgAccessibilityTech);
export default ForwardRef;