Text

import React from 'react';
import { Text } from 'monalisa-ui';
const Example = () => (
<Text>This is Text component</Text>
);
export default Example;Configuration
Example
Last updated

import React from 'react';
import { Text } from 'monalisa-ui';
const Example = () => (
<Text>This is Text component</Text>
);
export default Example;Last updated
import React from 'react';
import { View } from 'react-native';
import { Text } from 'monalisa-ui';
const Example = () => (
<View>
<Text h1>This is Text h1</Text>
<Text h2>This is Text h2</Text>
<Text h3>This is Text h3</Text>
<Text h4>This is Text h4</Text>
<Text bold>This is Text bold</Text>
<Text color="#ff0000">This is Text color red</Text>
<Text style={{ margin: 20 }}>This is Text custom style</Text>
</View>
);
export default Example;