summaryrefslogtreecommitdiffhomepage
path: root/gui/src/renderer/components/Cell.tsx
diff options
context:
space:
mode:
authorLinus Färnstrand <linus@mullvad.net>2019-04-16 15:18:42 +0200
committerLinus Färnstrand <linus@mullvad.net>2019-04-16 15:18:42 +0200
commitad75a40887267b139eb536ca5aca0a47ec551f11 (patch)
tree23cec1bf031f430ea711da79b551bf1496c5d7bb /gui/src/renderer/components/Cell.tsx
parentf19428bf4b0618b0026e896bd7a32686dc8569ed (diff)
parentba2b082d9bace6bba06d6b8dcf0a0226a1e3ee62 (diff)
downloadmullvadvpn-ad75a40887267b139eb536ca5aca0a47ec551f11.tar.xz
mullvadvpn-ad75a40887267b139eb536ca5aca0a47ec551f11.zip
Merge branch 'update-vulnerable-deps'
Diffstat (limited to 'gui/src/renderer/components/Cell.tsx')
-rw-r--r--gui/src/renderer/components/Cell.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/gui/src/renderer/components/Cell.tsx b/gui/src/renderer/components/Cell.tsx
index 2ba4051172..c2f5e633bf 100644
--- a/gui/src/renderer/components/Cell.tsx
+++ b/gui/src/renderer/components/Cell.tsx
@@ -245,12 +245,12 @@ export const Switch = function CellSwitch(props: SwitchControl['props']) {
);
};
-interface InputFrameProps {
+interface IInputFrameProps {
children?: React.ReactNode;
style?: Types.StyleRuleSetRecursive<Types.ViewStyleRuleSet>;
}
-export const InputFrame = function CellInputFrame(props: InputFrameProps) {
+export const InputFrame = function CellInputFrame(props: IInputFrameProps) {
const { style, children } = props;
return <View style={[styles.input.frame, style]}>{children}</View>;