import { ArrowDownIcon, ArrowUpIcon } from "@coss/ui/icons"; export type ArrowButtonProps = { arrowDirection: "up" | "down"; onClick: () => void; }; export function ArrowButton(props: ArrowButtonProps) { return ( <> {props.arrowDirection === "up" ? ( ) : ( )} ); }