14 lines
312 B
JavaScript
14 lines
312 B
JavaScript
|
import React from 'react';
|
||
|
import { ScrollView } from 'react-native';
|
||
|
|
||
|
import Avatar from '../../app/components/avatar';
|
||
|
|
||
|
export default (
|
||
|
<ScrollView>
|
||
|
<Avatar text={'test'} />
|
||
|
<Avatar size={40} text={'aa'} />
|
||
|
<Avatar size={30} text={'bb'} />
|
||
|
<Avatar text={'test'} borderRadius={2} />
|
||
|
</ScrollView>
|
||
|
);
|