import * as React from "react" import { Button, type ButtonProps } from "./button" import { cn } from "@openreel/ui/lib/utils" export interface IconButtonProps extends Omit { icon: React.ElementType iconSize?: number } const IconButton = React.forwardRef( ({ icon: Icon, iconSize = 14, className, variant = "ghost", size = "icon-xs", ...props }, ref) => { return ( ) } ) IconButton.displayName = "IconButton" export { IconButton }