From f65643ddcb6d64b3d52e72fcb9aaeca518edcbea Mon Sep 17 00:00:00 2001 From: mkrause Date: Sat, 12 Oct 2024 23:26:04 +0200 Subject: [PATCH] Fix TypeScript error in ProgressBar: wrong element type. --- src/components/graphics/ProgressBar/ProgressBar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/graphics/ProgressBar/ProgressBar.tsx b/src/components/graphics/ProgressBar/ProgressBar.tsx index 3efbf23..689c844 100644 --- a/src/components/graphics/ProgressBar/ProgressBar.tsx +++ b/src/components/graphics/ProgressBar/ProgressBar.tsx @@ -10,7 +10,7 @@ import cl from './ProgressBar.module.scss'; export { cl as ProgressBarClassNames }; -export type ProgressBarProps = React.PropsWithChildren & { +export type ProgressBarProps = React.PropsWithChildren & { /** Whether this component should be unstyled. */ unstyled?: undefined | boolean,