summaryrefslogtreecommitdiff
path: root/app_expo/components/form-row/form-row.props.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'app_expo/components/form-row/form-row.props.tsx')
-rw-r--r--app_expo/components/form-row/form-row.props.tsx23
1 files changed, 23 insertions, 0 deletions
diff --git a/app_expo/components/form-row/form-row.props.tsx b/app_expo/components/form-row/form-row.props.tsx
new file mode 100644
index 0000000..55b632e
--- /dev/null
+++ b/app_expo/components/form-row/form-row.props.tsx
@@ -0,0 +1,23 @@
+import * as React from 'react'
+import { StyleProp, ViewStyle } from 'react-native'
+import { FormRowPresets } from './form-row.presets'
+
+/**
+ * The properties you can pass to FormRow.
+ */
+export interface FormRowProps {
+ /**
+ * Children components.
+ */
+ children?: React.ReactNode
+
+ /**
+ * Override the container style... useful for margins and padding.
+ */
+ style?: StyleProp<ViewStyle>
+
+ /**
+ * The type of border.
+ */
+ preset: FormRowPresets
+}