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