[APM] Change impact indicator size (#102060)

This commit is contained in:
Casper Hübertz 2021-06-14 18:34:52 +02:00 committed by GitHub
parent 91b804f505
commit 571524005e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -4,7 +4,7 @@ exports[`ImpactBar component should render with default values 1`] = `
<EuiProgress
color="primary"
max={100}
size="l"
size="m"
value={25}
/>
`;

View file

@ -18,7 +18,7 @@ export interface ImpactBarProps extends Record<string, unknown> {
export function ImpactBar({
value,
size = 'l',
size = 'm',
max = 100,
color = 'primary',
...rest