"use client" import React, { FC } from 'react' interface CustomButtonProps { onClick?: () => void className?: string children: React.ReactNode disabled?: boolean type?: "button" | "submit" | "reset" } const CustomButton: FC = (props) => { const { onClick, className = '', children, disabled = false, type = 'button' } = props return ( ) } export { CustomButton }