import React from 'react'; import { View, StyleSheet } from 'react-native'; import type { PanelProps } from './types'; export const PanelContent: React.FC< Pick > = ({ children, isMinimized, contentStyle }) => { if (isMinimized) return null; return {children}; }; const styles = StyleSheet.create({ container: { flex: 1, }, });