packages/icons/src/components/Image.tsx
import * as React from 'react';
import type { SVGProps } from 'react';
const Image = (props: SVGProps<SVGSVGElement>) => (
<svg
xmlns="http://www.w3.org/2000/svg"
width="1em"
height="1em"
fill="none"
viewBox="0 0 24 24"
{...props}
>
<path
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={2}
d="M19 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2"
/>
<path
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={2}
d="M9 11a2 2 0 1 0 0-4 2 2 0 0 0 0 4M21 15l-3.086-3.086a2 2 0 0 0-2.828 0L6 21"
/>
</svg>
);
export default Image;