Fix ContextMenu stories
This commit is contained in:
parent
0e853ec7b7
commit
50e66b7725
2 changed files with 12 additions and 1 deletions
|
@ -30,6 +30,18 @@
|
|||
}
|
||||
|
||||
&::after {
|
||||
@include light-theme {
|
||||
@include color-svg(
|
||||
'../images/icons/v2/collapse-down-20.svg',
|
||||
$color-black
|
||||
);
|
||||
}
|
||||
@include dark-theme {
|
||||
@include color-svg(
|
||||
'../images/icons/v2/collapse-down-20.svg',
|
||||
$color-white
|
||||
);
|
||||
}
|
||||
content: '';
|
||||
display: block;
|
||||
flex-shrink: 0;
|
||||
|
|
|
@ -32,7 +32,6 @@ const getDefaultProps = (): PropsType<number> => ({
|
|||
],
|
||||
});
|
||||
|
||||
// TODO DESKTOP-3184
|
||||
story.add('Default', () => {
|
||||
return <ContextMenu {...getDefaultProps()} />;
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue