Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: implement new SnackBar design #5515

Merged
merged 10 commits into from
May 23, 2024
Prev Previous commit
Next Next commit
refactor: remove unused transform-origin CSS property
  • Loading branch information
thaisguigon committed May 22, 2024
commit 220b030fe38f68c745dc649f7478c3f806789de5
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ const StyledBar = styled.div<StyledBarProps>`
const StyledBarFilling = styled(motion.div)<{ color?: string }>`
background-color: ${({ color, theme }) => color ?? theme.font.color.primary};
height: 100%;
transform-origin: 0;
`;

export const ProgressBar = ({ className, color, value }: ProgressBarProps) => {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I love the new code!

Expand Down