- {t("common.powered_by")}{" "} - - Formbricks - -
- + + ++ {t("common.powered_by")}{" "} + + Formbricks + +
+ + ); } diff --git a/packages/surveys/src/components/icons/chevron-down-icon.tsx b/packages/surveys/src/components/icons/chevron-down-icon.tsx new file mode 100644 index 0000000000..cfa32fe120 --- /dev/null +++ b/packages/surveys/src/components/icons/chevron-down-icon.tsx @@ -0,0 +1,24 @@ +interface ChevronDownIconProps { + className?: string; +} + +export const ChevronDownIcon = ({ className }: ChevronDownIconProps) => { + return ( + + ); +}; diff --git a/packages/surveys/src/components/wrappers/scrollable-container.tsx b/packages/surveys/src/components/wrappers/scrollable-container.tsx index 4d64cf82bb..599c74c43c 100644 --- a/packages/surveys/src/components/wrappers/scrollable-container.tsx +++ b/packages/surveys/src/components/wrappers/scrollable-container.tsx @@ -1,6 +1,7 @@ import type { JSX, Ref } from "preact"; import { forwardRef } from "preact/compat"; import { useEffect, useImperativeHandle, useRef, useState } from "preact/hooks"; +import { ChevronDownIcon } from "@/components/icons/chevron-down-icon"; import { cn } from "@/lib/utils"; interface ScrollableContainerProps { @@ -85,7 +86,17 @@ export const ScrollableContainer = forwardRef