iconoir/packages/iconoir-react-native/src/AdobePhotoshop.tsx
2023-02-22 22:51:18 +00:00

41 lines
1.1 KiB
TypeScript

import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgAdobePhotoshop(
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="M21 7v10a4 4 0 01-4 4H7a4 4 0 01-4-4V7a4 4 0 014-4h10a4 4 0 014 4z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M7 16v-4m0 0V8h2a2 2 0 012 2v0a2 2 0 01-2 2H7zM17 11v0c-.306-.613-.933-1-1.618-1H15a1.5 1.5 0 00-1.5 1.5v0A1.5 1.5 0 0015 13h.5a1.5 1.5 0 011.5 1.5v0a1.5 1.5 0 01-1.5 1.5h-.382a1.809 1.809 0 01-1.618-1v0"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAdobePhotoshop);
export default ForwardRef;