|
| 1 | +import * as React from 'react'; |
| 2 | +import MaterialUILayout from '../../Layout'; |
| 3 | +import CircularColor from '../../../../../docs/data/material/components/progress/CircularColor.tsx'; |
| 4 | +import CircularDeterminate from '../../../../../docs/data/material/components/progress/CircularDeterminate.tsx'; |
| 5 | +import CircularIndeterminate from '../../../../../docs/data/material/components/progress/CircularIndeterminate.tsx'; |
| 6 | +import CircularIntegration from '../../../../../docs/data/material/components/progress/CircularIntegration.tsx'; |
| 7 | +import CircularUnderLoad from '../../../../../docs/data/material/components/progress/CircularUnderLoad.tsx'; |
| 8 | +import CircularWithValueLabel from '../../../../../docs/data/material/components/progress/CircularWithValueLabel.tsx'; |
| 9 | +import CustomizedProgressBars from '../../../../../docs/data/material/components/progress/CustomizedProgressBars.tsx'; |
| 10 | +import DelayingAppearance from '../../../../../docs/data/material/components/progress/DelayingAppearance.tsx'; |
| 11 | +import LinearBuffer from '../../../../../docs/data/material/components/progress/LinearBuffer.tsx'; |
| 12 | +import LinearColor from '../../../../../docs/data/material/components/progress/LinearColor.tsx'; |
| 13 | +import LinearDeterminate from '../../../../../docs/data/material/components/progress/LinearDeterminate.tsx'; |
| 14 | +import LinearIndeterminate from '../../../../../docs/data/material/components/progress/LinearIndeterminate.tsx'; |
| 15 | +import LinearWithValueLabel from '../../../../../docs/data/material/components/progress/LinearWithValueLabel.tsx'; |
| 16 | + |
| 17 | +export default function Progress() { |
| 18 | + return ( |
| 19 | + <MaterialUILayout> |
| 20 | + <h1>Progress</h1> |
| 21 | + <section> |
| 22 | + <h2> Circular Color</h2> |
| 23 | + <div className="demo-container"> |
| 24 | + <CircularColor /> |
| 25 | + </div> |
| 26 | + </section> |
| 27 | + <section> |
| 28 | + <h2> Circular Determinate</h2> |
| 29 | + <div className="demo-container"> |
| 30 | + <CircularDeterminate /> |
| 31 | + </div> |
| 32 | + </section> |
| 33 | + <section> |
| 34 | + <h2> Circular Indeterminate</h2> |
| 35 | + <div className="demo-container"> |
| 36 | + <CircularIndeterminate /> |
| 37 | + </div> |
| 38 | + </section> |
| 39 | + <section> |
| 40 | + <h2> Circular Integration</h2> |
| 41 | + <div className="demo-container"> |
| 42 | + <CircularIntegration /> |
| 43 | + </div> |
| 44 | + </section> |
| 45 | + <section> |
| 46 | + <h2> Circular Under Load</h2> |
| 47 | + <div className="demo-container"> |
| 48 | + <CircularUnderLoad /> |
| 49 | + </div> |
| 50 | + </section> |
| 51 | + <section> |
| 52 | + <h2> Circular With Value Label</h2> |
| 53 | + <div className="demo-container"> |
| 54 | + <CircularWithValueLabel /> |
| 55 | + </div> |
| 56 | + </section> |
| 57 | + <section> |
| 58 | + <h2> Customized Progress Bars</h2> |
| 59 | + <div className="demo-container"> |
| 60 | + <CustomizedProgressBars /> |
| 61 | + </div> |
| 62 | + </section> |
| 63 | + <section> |
| 64 | + <h2> Delaying Appearance</h2> |
| 65 | + <div className="demo-container"> |
| 66 | + <DelayingAppearance /> |
| 67 | + </div> |
| 68 | + </section> |
| 69 | + <section> |
| 70 | + <h2> Linear Buffer</h2> |
| 71 | + <div className="demo-container"> |
| 72 | + <LinearBuffer /> |
| 73 | + </div> |
| 74 | + </section> |
| 75 | + <section> |
| 76 | + <h2> Linear Color</h2> |
| 77 | + <div className="demo-container"> |
| 78 | + <LinearColor /> |
| 79 | + </div> |
| 80 | + </section> |
| 81 | + <section> |
| 82 | + <h2> Linear Determinate</h2> |
| 83 | + <div className="demo-container"> |
| 84 | + <LinearDeterminate /> |
| 85 | + </div> |
| 86 | + </section> |
| 87 | + <section> |
| 88 | + <h2> Linear Indeterminate</h2> |
| 89 | + <div className="demo-container"> |
| 90 | + <LinearIndeterminate /> |
| 91 | + </div> |
| 92 | + </section> |
| 93 | + <section> |
| 94 | + <h2> Linear With Value Label</h2> |
| 95 | + <div className="demo-container"> |
| 96 | + <LinearWithValueLabel /> |
| 97 | + </div> |
| 98 | + </section> |
| 99 | + </MaterialUILayout> |
| 100 | + ); |
| 101 | +} |
0 commit comments