chore(progress): add linear progress demo aria

PiperOrigin-RevId: 557937995
This commit is contained in:
Elizabeth Mitchell 2023-08-17 14:31:03 -07:00 committed by Copybara-Service
parent bc19c8d12f
commit 379aa6140d

View File

@ -51,12 +51,13 @@ const linear: MaterialStoryInit<StoryKnobs> = {
return html`
<md-linear-progress
class=${classMap(classes)}
.value=${value}
.max=${max}
.buffer=${buffer}
.indeterminate=${indeterminate}
.fourColor=${fourColor}
aria-label="An example linear progress bar"
class=${classMap(classes)}
.value=${value}
.max=${max}
.buffer=${buffer}
.indeterminate=${indeterminate}
.fourColor=${fourColor}
></md-linear-progress>`;
}
};