@rapido/components
Version:
Library of common primitive components used in Rapido apps.
23 lines (22 loc) • 1.19 kB
TypeScript
/**
* Copyright (c) 2019-present Verum Technologies
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
export { default as styled, css, isStyledComponent, ThemeConsumer, ThemeContext, ThemeProvider, withTheme, DefaultTheme, } from 'styled-components/native';
export { default as ActivityIndicator } from './ActivityIndicator';
export { default as Button } from './Button';
export { default as Hoverable } from './Hoverable';
export { default as Image } from './Image';
export { default as ImageBackground } from './ImageBackground';
export { default as SafeAreaView } from './SafeAreaView';
export { default as ScrollView } from './ScrollView';
export { default as Text } from './Text';
export { default as TextInput } from './TextInput';
export { default as TouchableHighlight } from './TouchableHighlight';
export { default as TouchableNativeFeedback } from './TouchableNativeFeedback';
export { default as TouchableOpacity } from './TouchableOpacity';
export { default as TouchableWithoutFeedback } from './TouchableWithoutFeedback';
export { default as View } from './View';
export * from './types';