import React from 'react';
import { type ComposableProps } from '../../../lib/slot';
export interface PopconfirmArrowProps extends ComposableProps<'div'> {
/**
* Arrow content (optional).
*/
children?: React.ReactNode;
}
/**
* PopconfirmArrow Component
*
* A composable component for the arrow/tip of a Popconfirm.
* Typically used within PopconfirmContent.
*
* @public
*
* @example
* ```tsx
*