LoadingPaper#

This component extends material-ui Paper. It adds a pending prop, to show a progress bar at the top of <Paper>.
See demo.

Example#

import { LoadingPaper } from 'la-danze-ui';
function App() {
return (
<LoadingPaper pending={true}>
content
</LoadingPaper>
);
}

Props#

Extends material-ui Paper props

Additional props:

NameTypeDefaultRequiredDescription
pendingbooleanNoWeither to show progress or not.
progressColor'primary' | 'secondary''secondary'NoTheme color of progress bar.