import { CloseIcon } from '@blocksuite/icons'; import { IconButton, type IconButtonProps, } from '@toeverything/components/button'; import type { HTMLAttributes } from 'react'; export type ModalCloseButtonProps = { top?: number; right?: number; absolute?: boolean; } & Omit & HTMLAttributes; export const ModalCloseButton = ({ absolute = true, right, top, ...props }: ModalCloseButtonProps) => { return ( ); }; export default ModalCloseButton;