Fix ContextMenu stories

This commit is contained in:
Josh Perez 2022-03-09 19:31:34 -05:00 committed by GitHub
parent 0e853ec7b7
commit 50e66b7725
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 1 deletions

View File

@ -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;

View File

@ -32,7 +32,6 @@ const getDefaultProps = (): PropsType<number> => ({
],
});
// TODO DESKTOP-3184
story.add('Default', () => {
return <ContextMenu {...getDefaultProps()} />;
});