Preparing search index...

    Props for the ImageThumbnail component

    type ImageThumbnailProps = {
        uri?: string;
        size: number;
        borderRadius?: number;
        testID: string;
        icon?: IconName;
        onIconPress?: () => void;
    }
    Index

    Properties

    uri?: string

    URI or path to the image to display

    size: number

    Width and height of the thumbnail in pixels

    borderRadius?: number

    Border radius for rounded corners

    testID: string

    Unique identifier for testing, forwarded to CustomImage

    icon?: IconName

    Material icon name rendered in the top-right corner

    onIconPress?: () => void

    Callback invoked when the icon is pressed; omit for display-only icons