import React from 'react';
import {SwipeRightActionsProps} from './types';
/**
* Container for right swipe actions
* Does not render anything itself - used for configuration
*
* @example
* ```tsx
*
* {}}>
* Delete
*
* {}}>
* Archive
*
*
* ```
*/
export const SwipeableListItemSwipeRightActions: React.FC = () => {
// This component is used for configuration only, doesn't render
// Children are extracted and processed by the main SwipeableListItem component
return null;
};