* Home page first pass * Adds missing static elements, introduces button component * Removes inlines styles * Various clean ups and button component added * Updates typography, and adds button util * Removes button component * Uses stylesheet.create for memoization * Snapshots updated * Podfile update / fix * Flatlist! * Tests updated * Moves out server icon, styling fixes * Sneaky buttons added, compass-icons list, and server_icon removed * Snapshots * Adds chevron to header * Removes unnecessary files * Tidies up header and error * Address feedback * Compass Icon const removed
11 lines
375 B
TypeScript
11 lines
375 B
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import {createIconSetFromFontello} from 'react-native-vector-icons';
|
|
|
|
import fontelloConfig from '@assets/compass-icons.json';
|
|
|
|
const CompassIcon = createIconSetFromFontello(fontelloConfig, 'compass-icons',
|
|
'compass-icons.ttf');
|
|
|
|
export default CompassIcon;
|