import {View} from 'react-native' import {ITEM_PADDING} from './constants' import {Button, Subheading} from 'react-native-paper' export default function LabelledButton({ label, onPress, children, }: { label?: string onPress: () => void children: string }) { return ( {label} ) }