import CustomText from '@components/Text' import { StyleConstants } from '@utils/styles/constants' import { useTheme } from '@utils/styles/ThemeManager' import React from 'react' import { View, ViewStyle } from 'react-native' import { PlaceholderLine } from 'rn-placeholder' export interface Props { style?: ViewStyle header: string content?: string potentialWidth?: number } const InstanceInfo: React.FC = ({ style, header, content, potentialWidth }) => { const { colors } = useTheme() return ( {content ? ( ) : ( )} ) } export default InstanceInfo