Skip to content

Commit 1680c87

Browse files
authored
Merge pull request #215 from robrichard/master
add missing variables from props
2 parents 66f48f4 + 496b0b3 commit 1680c87

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

NavbarButton.js

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,15 @@ import {
88
import styles from './styles';
99

1010
export default function NavbarButton(props) {
11-
const { style, tintColor, title, handler, disabled } = props;
11+
const {
12+
style,
13+
tintColor,
14+
title,
15+
handler,
16+
disabled,
17+
accessible,
18+
accessibilityLabel
19+
} = props;
1220

1321
return (
1422
<TouchableOpacity

0 commit comments

Comments
 (0)