forked from react-native-elements/react-native-elements
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
55 lines (50 loc) · 1.14 KB
/
index.js
File metadata and controls
55 lines (50 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
// Core
import Button from './buttons/Button';
import Input from './input/Input';
import Icon from './icons/Icon';
import List from './list/List';
import ListItem from './list/ListItem';
import SocialIcon from './social/SocialIcon';
// Utilities
import SearchBar from './search/Search';
import Badge from './badge/badge';
import CheckBox from './checkbox/CheckBox';
import Divider from './divider/Divider';
import Slider from './slider/Slider';
import ButtonGroup from './buttons/ButtonGroup';
// Productivity
import Card from './card/Card';
import Tile from './tile/Tile';
import Avatar from './avatar/Avatar';
import Rating from './rating/Rating';
import Header from './header/Header';
import PricingCard from './pricing/PricingCard';
// helpers
import Text from './text/Text';
import colors from './config/colors';
import getIconType from './helpers/getIconType';
import normalize from './helpers/normalizeText';
export {
Badge,
Button,
ButtonGroup,
Card,
Input,
List,
ListItem,
PricingCard,
SocialIcon,
Text,
Divider,
CheckBox,
SearchBar,
Icon,
colors,
getIconType,
normalize,
Tile,
Slider,
Avatar,
Rating,
Header,
};