import React from 'react';
import { type ComposableProps } from '../../../lib/slot';
export interface PopconfirmIconProps extends ComposableProps<'div'> {
/**
* Custom icon name
*/
icon?: string;
/**
* Custom icon content (when using asChild)
*/
children?: React.ReactNode;
}
/**
* PopconfirmIcon Component
*
* A composable component for the icon in a Popconfirm.
* Typically used within PopconfirmContent.
*
* @public
*
* @example
* ```tsx
*