@mirweb/mir-web-components 2.3.0 → 2.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -113,7 +113,6 @@ export type Props = {
|
|
|
113
113
|
flipHorizontal?: boolean;
|
|
114
114
|
flipVertical?: boolean;
|
|
115
115
|
bgColor?: BgColor;
|
|
116
|
-
linkText?: string;
|
|
117
116
|
linkType?: string;
|
|
118
117
|
};
|
|
119
118
|
|
|
@@ -123,7 +122,6 @@ const props = withDefaults(defineProps<Props>(), {
|
|
|
123
122
|
flipHorizontal: false,
|
|
124
123
|
flipVertical: false,
|
|
125
124
|
bgColor: "white",
|
|
126
|
-
linkText: "",
|
|
127
125
|
linkType: "link",
|
|
128
126
|
});
|
|
129
127
|
|