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