import {View} from 'react-native' import { atoms as a, flatten, type TextStyleProp, useTheme, type ViewStyleProp, } from '#/alf' import {type Props} from '#/components/icons/common' import {type Growth_Stroke2_Corner0_Rounded as Growth} from '#/components/icons/Growth' export function IconCircle({ icon: Icon, size = 'xl', style, iconStyle, }: ViewStyleProp & { icon: typeof Growth size?: Props['size'] iconStyle?: TextStyleProp['style'] }) { const t = useTheme() return ( ) }