dAppBooster
    Preparing search index...
    interface TokenLogoProps {
        size?: number;
        token: {
            address: string;
            chainId: number;
            decimals: number;
            extensions?: Record<
                string,
                | undefined
                | null
                | string
                | number
                | bigint
                | boolean
                | Record<
                    string,
                    | undefined
                    | null
                    | string
                    | number
                    | bigint
                    | boolean
                    | Record<string, undefined | null | string | number | bigint | boolean>,
                >,
            >;
            logoURI?: string;
            name: string;
            symbol: string;
        };
    }
    Index

    Properties

    Properties

    size?: number
    token: {
        address: string;
        chainId: number;
        decimals: number;
        extensions?: Record<
            string,
            | undefined
            | null
            | string
            | number
            | bigint
            | boolean
            | Record<
                string,
                | undefined
                | null
                | string
                | number
                | bigint
                | boolean
                | Record<string, undefined | null | string | number | bigint | boolean>,
            >,
        >;
        logoURI?: string;
        name: string;
        symbol: string;
    }