Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
423 Bytes
"use client"
import { forwardRef } from "react"
import { Button, type ButtonProps } from "./button"
export interface IconButtonProps extends ButtonProps {}
export const IconButton = forwardRef<HTMLButtonElement, IconButtonProps>(
function IconButton(props, ref) {
return (
<Button
px="0"
py="0"
_icon={{ fontSize: "1.2em" }}
ref={ref}
{...props}
/>
)
},
)