frontPanel/src/ui_kit/AddOrEditImageButton.tsx

60 lines
1.6 KiB
TypeScript
Raw Normal View History

2023-10-19 10:34:48 +00:00
import Plus from "@icons/questionsPage/plus";
import { Box, ButtonBase, SxProps, Theme } from "@mui/material";
import Image from "../assets/icons/questionsPage/image";
interface Props {
sx?: SxProps<Theme>;
imageSrc?: string;
onImageClick?: () => void;
onPlusClick?: () => void;
}
export default function AddOrEditImageButton({ onImageClick, onPlusClick, sx, imageSrc }: Props) {
return (
<Box sx={{
display: "flex",
height: "40px",
minWidth: "60px",
width: "60px",
borderRadius: "3px",
overflow: "hidden",
...sx,
}}>
<ButtonBase
onClick={onImageClick}
sx={{
flexGrow: 1,
backgroundColor: "#EEE4FC",
}}>
{imageSrc ? (
<img
src={imageSrc}
alt=""
style={{
width: "100%",
height: "100%",
objectFit: "scale-down",
display: "block",
}}
/>
) : (
<Image sx={{
height: "100%",
width: "100%",
}} />
)}
</ButtonBase>
<ButtonBase
onClick={onPlusClick}
sx={{
width: "20px",
}}
>
<Plus />
</ButtonBase>
</Box>
);
}