From 73308af061af5e17ac7d4a73fa027a2f303c70dd Mon Sep 17 00:00:00 2001 From: Kirill Rogovoy Date: Fri, 23 Jul 2021 11:02:26 +0300 Subject: Update graph data when Emacs node changes + minor improvements --- app_expo/components/button/button.props.ts | 35 ------------------------------ 1 file changed, 35 deletions(-) delete mode 100644 app_expo/components/button/button.props.ts (limited to 'app_expo/components/button/button.props.ts') diff --git a/app_expo/components/button/button.props.ts b/app_expo/components/button/button.props.ts deleted file mode 100644 index 810e0aa..0000000 --- a/app_expo/components/button/button.props.ts +++ /dev/null @@ -1,35 +0,0 @@ -import { StyleProp, TextStyle, TouchableOpacityProps, ViewStyle } from 'react-native' -import { ButtonPresetNames } from './button.presets' -import { TxKeyPath } from '../../i18n' - -export interface ButtonProps extends TouchableOpacityProps { - /** - * Text which is looked up via i18n. - */ - tx?: TxKeyPath - - /** - * The text to display if not using `tx` or nested components. - */ - text?: string - - /** - * An optional style override useful for padding & margin. - */ - style?: StyleProp - - /** - * An optional style override useful for the button text. - */ - textStyle?: StyleProp - - /** - * One of the different types of text presets. - */ - preset?: ButtonPresetNames - - /** - * One of the different types of text presets. - */ - children?: React.ReactNode -} -- cgit v1.2.3