import React from 'react'; import clsx from 'clsx'; interface ButtonProps { icon: React.ReactNode; onClick: () => void; disabled?: boolean; tooltip?: string; tooltipDirection?: 'top' | 'bottom' | 'left' | 'right'; className?: string; } const Button: React.FC = ({ icon, onClick, disabled = false, tooltip, tooltipDirection = 'top', className, }) => { return (
); }; export default Button;