123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- "use strict";
- var uni_modules_uviewPlus_libs_config_props = require("../../libs/config/props.js");
- var props = {
- props: {
- name: {
- type: String,
- default: () => uni_modules_uviewPlus_libs_config_props.defProps.icon.name
- },
- color: {
- type: String,
- default: () => uni_modules_uviewPlus_libs_config_props.defProps.icon.color
- },
- size: {
- type: [String, Number],
- default: () => uni_modules_uviewPlus_libs_config_props.defProps.icon.size
- },
- bold: {
- type: Boolean,
- default: () => uni_modules_uviewPlus_libs_config_props.defProps.icon.bold
- },
- index: {
- type: [String, Number],
- default: () => uni_modules_uviewPlus_libs_config_props.defProps.icon.index
- },
- hoverClass: {
- type: String,
- default: () => uni_modules_uviewPlus_libs_config_props.defProps.icon.hoverClass
- },
- customPrefix: {
- type: String,
- default: () => uni_modules_uviewPlus_libs_config_props.defProps.icon.customPrefix
- },
- label: {
- type: [String, Number],
- default: () => uni_modules_uviewPlus_libs_config_props.defProps.icon.label
- },
- labelPos: {
- type: String,
- default: () => uni_modules_uviewPlus_libs_config_props.defProps.icon.labelPos
- },
- labelSize: {
- type: [String, Number],
- default: () => uni_modules_uviewPlus_libs_config_props.defProps.icon.labelSize
- },
- labelColor: {
- type: String,
- default: () => uni_modules_uviewPlus_libs_config_props.defProps.icon.labelColor
- },
- space: {
- type: [String, Number],
- default: () => uni_modules_uviewPlus_libs_config_props.defProps.icon.space
- },
- imgMode: {
- type: String,
- default: () => uni_modules_uviewPlus_libs_config_props.defProps.icon.imgMode
- },
- width: {
- type: [String, Number],
- default: () => uni_modules_uviewPlus_libs_config_props.defProps.icon.width
- },
- height: {
- type: [String, Number],
- default: () => uni_modules_uviewPlus_libs_config_props.defProps.icon.height
- },
- top: {
- type: [String, Number],
- default: () => uni_modules_uviewPlus_libs_config_props.defProps.icon.top
- },
- stop: {
- type: Boolean,
- default: () => uni_modules_uviewPlus_libs_config_props.defProps.icon.stop
- }
- }
- };
- exports.props = props;
|