zhongrj
2025-11-24 07ab3cd14a4c75b7f196123eafbafaa5fadaefb0
1
2
3
4
5
6
7
8
9
10
11
12
import React, { PureComponent, Fragment } from "react";
import { AssetConfig } from "../defaults";
 
const IonAssetLabel = ({ asset, showIcon = false, ...options }) => (
    <Fragment>
        {showIcon && <i className={`${AssetConfig[asset].icon}`} />}
        {"  "}
        {AssetConfig[asset].name}
    </Fragment>
);
 
export default IonAssetLabel;