import * as React from 'react'; import { StyleProp, StyleSheet, View, ViewStyle } from 'react-native'; import { useInternalTheme } from '../../core/theming'; import { white } from '../../styles/themes/v2/colors'; import type { ThemeProp } from '../../types'; import getContrastingColor from '../../utils/getContrastingColor'; import Icon, { IconSource } from '../Icon'; const defaultSize = 64; export type Props = React.ComponentPropsWithRef & { /** * Icon to display for the `Avatar`. */ icon: IconSource; /** * Size of the avatar. */ size?: number; /** * Custom color for the icon. */ color?: string; style?: StyleProp; /** * @optional */ theme?: ThemeProp; }; /** * Avatars can be used to represent people in a graphical way. * * ## Usage * ```js * import * as React from 'react'; * import { Avatar } from 'react-native-paper'; * * const MyComponent = () => ( * * ); * ``` */ const Avatar = ({ icon, size = defaultSize, style, theme: themeOverrides, ...rest }: Props) => { const theme = useInternalTheme(themeOverrides); const { backgroundColor = theme.colors?.primary, ...restStyle } = StyleSheet.flatten(style) || {}; const textColor = rest.color ?? getContrastingColor(backgroundColor, white, 'rgba(0, 0, 0, .54)'); return ( ); }; Avatar.displayName = 'Avatar.Icon'; const styles = StyleSheet.create({ container: { justifyContent: 'center', alignItems: 'center', }, }); export default Avatar;