2023-12-07 22:56:31 +00:00
|
|
|
import { useTheme, SxProps, Box } from "@mui/material";
|
|
|
|
|
|
|
|
interface Props {
|
|
|
|
sx?: SxProps;
|
|
|
|
}
|
|
|
|
|
|
|
|
export default function ExpandIcon({ sx }: Props) {
|
|
|
|
const theme = useTheme();
|
|
|
|
|
|
|
|
return (
|
2023-12-09 21:04:26 +00:00
|
|
|
<Box sx={{ ...sx, display: "flex", alignItems:"center", justifyContent: "center" }}>
|
2023-12-07 22:56:31 +00:00
|
|
|
<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
|
|
<rect width="30" height="30" rx="6" fill="#EEE4FC" />
|
|
|
|
<path d="M22.5 11.25L15 18.75L7.5 11.25" stroke="#7E2AEA" stroke-width="1.5" stroke-linecap="round" strokeLinejoin="round" />
|
|
|
|
</svg>
|
|
|
|
</Box>
|
|
|
|
);
|
|
|
|
}
|