import React, { FC } from 'react' import { IconButton as MuiIconButton, SxProps } from '@mui/material' import { type Color, type ButtonRef } from 'types/button' interface IconButtonProps { onClick?: (event?: any) => void, disabled?: boolean, sx?: SxProps, color?: Color, href?: string, target?: string, className?: string, children?: React.ReactNode } export const IconButton: FC = React.forwardRef((props, ref: ButtonRef) => { // == Props ================================ const { onClick, sx, color, children, disabled = false, className = '' } = props // == Hooks ================================ // == Functions ============================ // == Actions ============================== // == Template ============================= return ( {children} ) })