Inputs allow users to enter text into a UI.
import React from 'react';
import { View } from 'react-native';
import { Textarea } from 'monalisa-ui';
const Example = () => (
<View>
<Textarea
placeholder="Input value"
/>
<Textarea
placeholder="Input value"
height={150}
/>
<Textarea
placeholder="Input value"
rounded={18}
/>
<Textarea
placeholder="Input value"
borderColor="#ff0000"
/>
</View>
);
export default Example;