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` return html`
<md-linear-progress <md-linear-progress
class=${classMap(classes)} aria-label="An example linear progress bar"
.value=${value} class=${classMap(classes)}
.max=${max} .value=${value}
.buffer=${buffer} .max=${max}
.indeterminate=${indeterminate} .buffer=${buffer}
.fourColor=${fourColor} .indeterminate=${indeterminate}
.fourColor=${fourColor}
></md-linear-progress>`; ></md-linear-progress>`;
} }
}; };