@oxyhq/services
Version:
Reusable OxyHQ module to handle authentication, user management, karma system, device-based session management and more 🚀
17 lines • 455 B
TypeScript
import React from 'react';
interface GroupedItemProps {
icon?: string;
iconColor?: string;
title: string;
subtitle?: string;
theme: 'light' | 'dark';
onPress?: () => void;
isFirst?: boolean;
isLast?: boolean;
showChevron?: boolean;
disabled?: boolean;
customContent?: React.ReactNode;
}
declare const GroupedItem: React.FC<GroupedItemProps>;
export default GroupedItem;
//# sourceMappingURL=GroupedItem.d.ts.map