import React from "react"; import { ChevronLeftIcon, ChevronRightIcon } from "@navikt/aksel-icons"; import { cl } from "../../../utils/helpers"; interface ScrollButtonProps { hidden: boolean; onClick: () => void; dir: "left" | "right"; } function ScrollButton({ hidden, onClick, dir }: ScrollButtonProps) { return (
{dir === "left" ? : }
); } export default ScrollButton;