import { ActionSheetItem, type ActionSheetItemProps } from '../ActionSheetItem/ActionSheetItem'; export const ActionSheetDefaultIosCloseItem = ({ children = 'Отмена', ...restProps }: ActionSheetItemProps): React.ReactNode => { return ( {children} ); };