Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
467 Bytes
import * as React from "react"
import { CloseIcon } from "../icons"
import { IconButton, type IconButtonProps } from "./icon-button"
export interface CloseButtonProps extends IconButtonProps {}
export const CloseButton = React.forwardRef<
HTMLButtonElement,
CloseButtonProps
>(function CloseButton(props, ref) {
return (
<IconButton variant="ghost" aria-label="Close" ref={ref} {...props}>
{props.children ?? <CloseIcon />}
</IconButton>
)
})