10 lines
769 B
TypeScript
Executable File
10 lines
769 B
TypeScript
Executable File
import { SvgIcon, SvgIconProps } from "@mui/material";
|
|
|
|
export default function ImageCopy(props: SvgIconProps) {
|
|
return (
|
|
<SvgIcon {...props}>
|
|
<path d="M4.507 6.008A3.243 3.243 0 0 0 3 8.75v6.5c0 2.9 2.35 5.25 5.25 5.25h6.5a3.247 3.247 0 0 0 2.744-1.508l-.122.006-.122.002h-9a3.75 3.75 0 0 1-3.75-3.75v-9c0-.081.002-.162.007-.242Zm8.064 6.141-.094.078-5.394 5.313c.487.292 1.058.46 1.667.46h8.5c.621 0 1.201-.174 1.695-.476l-5.417-5.299-.084-.07a.75.75 0 0 0-.772-.067l-.101.061ZM8.75 3A3.25 3.25 0 0 0 5.5 6.25v8.5c0 .642.186 1.24.507 1.744l5.418-5.336.128-.117a2.25 2.25 0 0 1 2.888-.01l.136.122 5.433 5.314c.31-.498.49-1.086.49-1.717v-8.5A3.25 3.25 0 0 0 17.25 3h-8.5Zm.75 2.751a1.25 1.25 0 1 1 0 2.499 1.25 1.25 0 0 1 0-2.499Z" />
|
|
</SvgIcon>
|
|
);
|
|
}
|