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.

17 lines
346 B

5 months ago
  1. import React from 'react';
  2. import {Text} from 'react-native';
  3. import {ColorScheme} from './Design';
  4. export default function ELogo() {
  5. return (
  6. <Text
  7. style={{
  8. fontFamily: 'Axiforma-ExtraBold',
  9. fontSize: 36,
  10. color: ColorScheme.fill[10],
  11. textAlign: 'center',
  12. }}>
  13. essentory
  14. </Text>
  15. );
  16. }