summaryrefslogtreecommitdiff
path: root/app/components/form-row/form-row.tsx
blob: 20453366ca223b0435910fad3045b79678d9c3af (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import * as React from "react"
import { View } from "react-native"
import { PRESETS } from "./form-row.presets"
import { FormRowProps } from "./form-row.props"

/**
 * A horizontal container component used to hold a row of a form.
 */
export function FormRow(props: FormRowProps) {
  const viewStyle = [PRESETS[props.preset], props.style]

  return <View style={viewStyle}>{props.children}</View>
}