18 lines
583 B
TypeScript
18 lines
583 B
TypeScript
|
import { useTheme, SxProps, Box } from "@mui/material";
|
||
|
|
||
|
interface Props {
|
||
|
sx?: SxProps;
|
||
|
}
|
||
|
|
||
|
export default function ExpandIcon({ sx }: Props) {
|
||
|
const theme = useTheme();
|
||
|
|
||
|
return (
|
||
|
<Box sx={{ ...sx }}>
|
||
|
<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>
|
||
|
);
|
||
|
}
|