2023-10-03 16:05:20 +00:00
|
|
|
import { Box, SxProps, Theme } from "@mui/material";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
interface Props {
|
|
|
|
|
sx?: SxProps<Theme>;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default function ResizeIcon({ sx }: Props) {
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<Box sx={{
|
2023-10-05 11:41:54 +00:00
|
|
|
height: "20px",
|
|
|
|
|
width: "20px",
|
2023-10-03 16:05:20 +00:00
|
|
|
display: "flex",
|
|
|
|
|
alignItems: "center",
|
|
|
|
|
justifyContent: "center",
|
|
|
|
|
cursor: "nwse-resize",
|
2023-10-05 11:41:54 +00:00
|
|
|
pointerEvents: "auto",
|
2023-10-03 16:05:20 +00:00
|
|
|
...sx,
|
|
|
|
|
}}>
|
2023-10-05 11:41:54 +00:00
|
|
|
<svg width="20" height="20" viewBox="0 0 30 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2023-10-03 16:05:20 +00:00
|
|
|
<path d="M10.5 8a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3ZM19.5 8a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3ZM10.5 16.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z" fill="#4D4D4D" />
|
|
|
|
|
</svg>
|
|
|
|
|
</Box>
|
|
|
|
|
);
|
|
|
|
|
}
|