Application Android et IOS pour l'amicale des élèves
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

HeaderButton.js 372B

12345678910111213141516
  1. import * as React from 'react';
  2. import {IconButton, withTheme} from 'react-native-paper';
  3. function HeaderButton(props) {
  4. const { colors } = props.theme;
  5. return (
  6. <IconButton
  7. icon={props.icon}
  8. size={26}
  9. color={colors.text}
  10. onPress={props.onPress}
  11. />
  12. );
  13. }
  14. export default withTheme(HeaderButton);