import React from "react"; import ResetIcon from "../icons/ResetIcon"; interface ResetButtonProps { onClick: () => void; disabled?: boolean; className?: string; ariaLabel?: string; children?: React.ReactNode; } export const ResetButton: React.FC = React.memo( ({ onClick, disabled = false, className = "", ariaLabel, children, }) => ( ), );