frontPanel/src/ui_kit/QuizPreview/ResizeIcon.tsx

26 lines
739 B
TypeScript
Raw Normal View History

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={{
height: "30px",
width: "30px",
display: "flex",
alignItems: "center",
justifyContent: "center",
cursor: "nwse-resize",
...sx,
}}>
<svg width="30" height="30" viewBox="0 0 30 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<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>
);
}