import { forwardRef } from 'react'
import { IconButton, type IconButtonProps } from './IconButton'
const XIcon = () => (
)
export type CloseButtonProps = IconButtonProps
export const CloseButton = forwardRef(
function CloseButton(props, ref) {
return (
{props.children ?? }
)
},
)