summaryrefslogtreecommitdiffhomepage
path: root/gui/src/renderer/components/Cell.tsx
diff options
context:
space:
mode:
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>;