Badge

import React from 'react';
import { View } from 'react-native';
import { Badge } from 'monalisa-ui';
const Example = () => (
<View>
<Badge value="12" />
<Badge value="+2" />
<Badge value="1234" />
{/* Custom style */}
<Badge value="4" bgColor="#ff0000" />
<Badge value="56" style={{ margin: 20 }} />
</View>
);
export default Example;Configuration
Last updated