import React from 'react' import {View} from 'react-native' import {Avatar} from '#/screens/Onboarding/StepProfile/index' import {atoms as a, useTheme} from '#/alf' export function AvatarCreatorCircle({ avatar, size = 125, }: { avatar: Avatar size?: number }) { const t = useTheme() const Icon = avatar.placeholder.component const styles = React.useMemo( () => ({ imageContainer: [ a.rounded_full, a.overflow_hidden, a.align_center, a.justify_center, a.border, t.atoms.border_contrast_high, { height: size, width: size, backgroundColor: avatar.backgroundColor, }, ], }), [avatar.backgroundColor, size, t.atoms.border_contrast_high], ) return ( ) }