ProgressBar

import React from 'react';
import { View } from 'react-native';
import { ProgressBar } from 'monalisa-ui';
const Example = () => (
<View>
<ProgressBar value={100} />
<ProgressBar height={15} value={30} />
</View>
);
export default Example;Configuration
Example
Last updated