Fix: assorted next fixes (#42634)

* chore: fix slightly broken package.json

* fix: update children type

* fix: make size optional for Spacer

* fix: correct broken env import

* test: update snapshot and fix typing

* test: fix imports and remove old snapshot
This commit is contained in:
Oliver Eyton-Williams
2021-06-25 18:50:39 +02:00
committed by Mrugesh Mohapatra
parent de888d640c
commit d87b472ee7
8 changed files with 21841 additions and 6 deletions

View File

@@ -1,7 +1,7 @@
import React from 'react';
interface SpacerProps {
size: number;
size?: number;
}
const styles = { padding: '15px 0', height: '1px' };