import React from 'react';
import {View} from 'react-native';
import {SwipeableListItemIconProps} from './types';
/**
* Icon component for SwipeableListItem.Metadata
* Renders any content as a metadata indicator (badge, icon, etc.)
*
* @example
* ```tsx
*
*
* 📌
*
*
*
* 5
*
*
*
* ```
*/
export const SwipeableListItemIcon: React.FC = ({
children,
style,
}) => {
return {children};
};