12345678910111213141516171819202122232425262728293031323334353637383940 |
- const props = {
- content: {
- type: null,
- },
- direction: {
- type: String,
- value: 'horizontal',
- },
- externalClasses: {
- type: Array,
- },
- extra: {
- type: String,
- },
- marquee: {
- type: null,
- value: false,
- },
- prefixIcon: {
- type: null,
- value: true,
- },
- suffixIcon: {
- type: null,
- value: null,
- },
- theme: {
- type: String,
- value: 'info',
- },
- visible: {
- type: Boolean,
- value: null,
- },
- defaultVisible: {
- type: Boolean,
- value: false,
- },
- };
- export default props;
|