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