mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
[APM] Change impact indicator size (#102060)
This commit is contained in:
parent
91b804f505
commit
571524005e
2 changed files with 2 additions and 2 deletions
|
@ -4,7 +4,7 @@ exports[`ImpactBar component should render with default values 1`] = `
|
|||
<EuiProgress
|
||||
color="primary"
|
||||
max={100}
|
||||
size="l"
|
||||
size="m"
|
||||
value={25}
|
||||
/>
|
||||
`;
|
||||
|
|
|
@ -18,7 +18,7 @@ export interface ImpactBarProps extends Record<string, unknown> {
|
|||
|
||||
export function ImpactBar({
|
||||
value,
|
||||
size = 'l',
|
||||
size = 'm',
|
||||
max = 100,
|
||||
color = 'primary',
|
||||
...rest
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue