@oiiai/oiiai-taro-react
Version:
OiiaiUI is a miniprogram ui library for TaroJS
32 lines (30 loc) • 1.73 kB
text/typescript
/**
* @author Menger
* @description 全局图片管理, 图片来自https://iconoir.com/
*/
class Icons {
static BaseUrl: string = 'https://zijutest-1257247197.cos.ap-nanjing.myqcloud.com/projects/meow-woof/icons';
static HomeSimpleIcon: string = `${this.BaseUrl}/home-simple.svg`;
static CircleSparkIcon: string = `${this.BaseUrl}/circle-spark.svg`;
static ProfileCircleIcon: string = `${this.BaseUrl}/profile-circle.svg`;
static LockIcon: string = `${this.BaseUrl}/lock.svg`;
static NavArrowTopIcon: string = `${this.BaseUrl}/nav-arrow-top.svg`;
static NavArrowRightIcon: string = `${this.BaseUrl}/nav-arrow-right.svg`;
static NavArrowBottomIcon: string = `${this.BaseUrl}/nav-arrow-bottom.svg`;
static NavArrowLeftIcon: string = `${this.BaseUrl}/nav-arrow-left.svg`;
static FileNotFoundIcon: string = `${this.BaseUrl}/file-not-found.svg`;
static MediaImageXmarkIcon: string = `${this.BaseUrl}/media-image-xmark.svg`;
static FireFlameIcon: string = `${this.BaseUrl}/fire-flame.svg`;
static ShoppingBagIcon: string = `${this.BaseUrl}/shopping-bag.svg`;
static UserIcon: string = `${this.BaseUrl}/user.svg`;
static SearchIcon: string = `${this.BaseUrl}/search.svg`;
static EyeIcon: string = `${this.BaseUrl}/eye.svg`;
static XMarkIcon: string = `${this.BaseUrl}/xmark.svg`;
static MessageTextIcon: string = `${this.BaseUrl}/message-text.svg`;
static RefreshDoubleIcon: string = `${this.BaseUrl}/refresh-double.svg`;
}
class WhiteIcons {
static BaseUrl: string = 'https://zijutest-1257247197.cos.ap-nanjing.myqcloud.com/projects/meow-woof/icons-white';
static RefreshDoubleIcon: string = `${this.BaseUrl}/refresh-double.svg`;
}
export { Icons, WhiteIcons }