import { IconButton, IconButtonProps, SxProps, Theme, useTheme } from "@mui/material"; interface Props { onClick?: IconButtonProps["onClick"]; sx?: SxProps; } export function CloseButtonSmall({ onClick, sx }: Props) { const theme = useTheme(); return ( ); }