A simple and fully customizable React Native component that implements a text drawable and text drawable list.
npm install text-drawable



A simple and fully customizable React Native component that implements a Text drawable.
iPhone Screen | Android Screen
:-------------------------:|:-------------------------:
| 
If using yarn:
```
yarn add text-drawable
If using npm:
``
npm i text-drawable
``
import { ProfileThumbnail, ThumbnailList } from 'text-drawable';
Simply place a tag with parameter.textStyle, titleStyle, and descriptionStyle
Drawable container and text are fully customizable using the props.``
title: "Java",
description:"Java Description",
backgroundColor:"green",
},
{
title: "React native",
backgroundColor:"red",
},
{
title: "Javaascript",
backgroundColor:"blue",
}
]}
label="A"
backgroundColor="green"/>
Example usage to change a single drawable image:
`
return (
backgroundColor="green"/>
)
``