import { IconButton, Fade } from "@mui/material"; import KeyboardArrowUpIcon from "@mui/icons-material/KeyboardArrowUp"; interface Props { onClick: () => void; show: boolean; } export const ScrollTopButton = ({ onClick, show }: Props) => { return ( theme.palette.mode === "dark" ? "rgba(255,255,255,0.1)" : "rgba(0,0,0,0.1)", "&:hover": { backgroundColor: (theme) => theme.palette.mode === "dark" ? "rgba(255,255,255,0.2)" : "rgba(0,0,0,0.2)", }, visibility: show ? "visible" : "hidden", }} > ); };