import React from 'react'; import CloseRoundedIcon from '@mui/icons-material/CloseRounded'; export type ResetButtonProps = { onClick: () => void; isDisabled?: boolean; }; export const ResetButton = ({ onClick, isDisabled }: ResetButtonProps) => (
);