maisonsport-common-ui
Version:
Suite of styled-components to be consumed by the React-Native App and by the Web (via React-Native for Web)
56 lines (42 loc) • 1.36 kB
text/typescript
import Theme from './theme';
import ActivityIndicator from './atoms/ActivityIndicator';
import Box from './atoms/Box';
import Touchable from './atoms/Touchable';
import Scrollable from './atoms/Scrollable';
import Text from './atoms/Text';
import KeyboardAvoidingView from './atoms/KeyboardAvoidingView';
import Accordion from './molecules/Accordion';
import Avatar from './molecules/Avatar';
import Button from './molecules/Button';
import ConversationAlertBubble from './molecules/ConversationAlertBubble';
import TextInput from './molecules/TextInput';
import SelectBox from './molecules/SelectBox';
import MessageBubble from './molecules/MessageBubble';
import MessageSendButton from './molecules/MessageSendButton';
import LessonSummaryHeader from './organisms/LessonSummaryHeader';
import ConversationCard from './organisms/ConversationCard';
import MessageThread from './templates/MessageThread';
import HorizontalRule from './atoms/HorizontalRule';
import { commonValidators as validators } from './util/functions';
export {
Theme,
ActivityIndicator,
Box,
Touchable,
Scrollable,
Text,
KeyboardAvoidingView,
Accordion,
Avatar,
Button,
ConversationAlertBubble,
TextInput,
SelectBox,
MessageBubble,
MessageSendButton,
LessonSummaryHeader,
ConversationCard,
MessageThread,
HorizontalRule,
validators,
};