Button
import { Button } from '../components'
<Button
style={styles.demoButton}
primary
caption="Button"
onPress={() => {}}
/>import { Button } from '../components'
<Button
style={styles.demoButton}
primary
disabled
caption="Button"
onPress={() => {}}
/>Last updated