1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- export default {
- props: {
-
- name: {
- type: String,
- default: uni.$u.props.icon.name
- },
-
- color: {
- type: String,
- default: uni.$u.props.icon.color
- },
-
- size: {
- type: [String, Number],
- default: uni.$u.props.icon.size
- },
-
- bold: {
- type: Boolean,
- default: uni.$u.props.icon.bold
- },
-
- index: {
- type: [String, Number],
- default: uni.$u.props.icon.index
- },
-
- hoverClass: {
- type: String,
- default: uni.$u.props.icon.hoverClass
- },
-
- customPrefix: {
- type: String,
- default: uni.$u.props.icon.customPrefix
- },
-
- label: {
- type: [String, Number],
- default: uni.$u.props.icon.label
- },
-
- labelPos: {
- type: String,
- default: uni.$u.props.icon.labelPos
- },
-
- labelSize: {
- type: [String, Number],
- default: uni.$u.props.icon.labelSize
- },
-
- labelColor: {
- type: String,
- default: uni.$u.props.icon.labelColor
- },
-
- space: {
- type: [String, Number],
- default: uni.$u.props.icon.space
- },
-
- imgMode: {
- type: String,
- default: uni.$u.props.icon.imgMode
- },
-
- width: {
- type: [String, Number],
- default: uni.$u.props.icon.width
- },
-
- height: {
- type: [String, Number],
- default: uni.$u.props.icon.height
- },
-
- top: {
- type: [String, Number],
- default: uni.$u.props.icon.top
- },
-
- stop: {
- type: Boolean,
- default: uni.$u.props.icon.stop
- }
- }
- }
|