fix!: #1262 default width and height on svg

BREAKING CHANGE: default size might change if width or height is missing
This commit is contained in:
Mikael Sand
2020-03-04 19:46:12 +02:00
parent 0288d95e7b
commit 1d6798b08f
+2
View File
@@ -53,6 +53,8 @@ export default class Svg extends Shape<
static displayName = 'Svg';
static defaultProps = {
width: '100%',
height: '100%',
preserveAspectRatio: 'xMidYMid meet',
};