frontend/components/Create.js

18 lines
423 B
JavaScript
Raw Permalink Normal View History

2024-02-08 14:10:53 +00:00
import React from 'react';
import { HeaderButton } from 'react-navigation-header-buttons';
import { Ionicons } from '@expo/vector-icons';
import { Platform } from 'react-native';
const CreateSwitButton = (props) => {
return (
<HeaderButton
{...props}
IconComponent={Ionicons}
iconSize={23}
color={Platform.OS === 'android' ? 'white' : 'blue'}
/>
);
};
export default CreateSwitButton;