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