UNPKG

@vnmfify/core

Version:

```shell npm i @vnmfify/core -S ```

8 lines (7 loc) 316 B
import { ReactNode } from "react"; export declare type PopupClosePlacement = "top-right" | "top-left" | "bottom-right" | "bottom-left"; export interface PopupCloseProps { placement?: PopupClosePlacement; children?: ReactNode; } export default function PopupClose(props: PopupCloseProps): JSX.Element;