/* eslint-disable react/display-name */ import { Button } from "~/components/ui/button"; import { cn } from "~/lib/utils"; import React, { forwardRef } from "react"; import { IconType } from "react-icons/lib"; type Props = React.ComponentProps & { icon: IconType; }; const ActionButton = forwardRef( ({ icon: Icon, className, onClick, ...props }: Props, ref: any) => { return ( ); } ); export default ActionButton;