Skip to content

Commit

Permalink
[TimelineConnector] Add support for CSS variables (#34002)
Browse files Browse the repository at this point in the history
add support for css variables in TimelineConnector component
  • Loading branch information
ZeeshanTamboli committed Aug 22, 2022
1 parent 8a297a7 commit 7fad3a2
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -22,7 +22,7 @@ const TimelineConnectorRoot = styled('span', {
})(({ theme }) => {
return {
width: 2,
backgroundColor: theme.palette.grey[400],
backgroundColor: (theme.vars || theme).palette.grey[400],
flexGrow: 1,
};
});
Expand Down

0 comments on commit 7fad3a2

Please sign in to comment.