diff --git a/src/components/shared/styled.ts b/src/components/shared/styled.ts
index 709211e..a69e8d4 100644
--- a/src/components/shared/styled.ts
+++ b/src/components/shared/styled.ts
@@ -12,6 +12,7 @@ import {
Slider,
InputPicker,
Popover,
+ Panel,
} from 'rsuite';
import styled from 'styled-components';
@@ -217,3 +218,7 @@ export const StyledLink = styled.a`
color: ${(props) => props.theme.primary.text};
cursor: pointer;
`;
+
+export const StyledPanel = styled(Panel)`
+ color: ${(props) => props.theme.primary.text};
+`;