import * as React from 'react' import { Image } from '../Image' import { Text } from '../text/Text' import { View } from '../View/View' import { ButtonProps } from './Button' import { RoundButton } from './RoundButton' type PersonButtonProps = Omit & { photo?: string name?: string } export function ButtonPerson({ photo, name, ...props }: PersonButtonProps) { return ( {!!photo && ( )} {!!name && ( {name} )} ) }