import React from 'react' import {View} from 'react-native' import {MAX_ALT_TEXT} from '#/lib/constants' import {CharProgress} from '#/view/com/composer/char-progress/CharProgress' import {atoms as a, useTheme} from '#/alf' export function AltTextCounterWrapper({ altText, children, }: { altText?: string children: React.ReactNode }) { const t = useTheme() return ( {children} ) }