import { ArrowUp, ArrowDown } from "@calcom/ui/components/icon"; export type ArrowButtonProps = { arrowDirection: "up" | "down"; onClick: () => void; }; export function ArrowButton(props: ArrowButtonProps) { return ( <> {props.arrowDirection === "up" ? ( ) : ( )} ); }