UNPKG

gestalt

Version:

A set of React UI components which enforce Pinterest's design language

8 lines (7 loc) 249 B
import { ReactNode } from 'react'; type Props = { children: ReactNode; onClick?: (event: MouseEvent) => void; }; export default function OutsideEventBehavior({ children, onClick }: Props): import("react/jsx-runtime").JSX.Element; export {};