import { ReactNode, useEffect, useMemo, useRef } from 'react' import { styled } from '../tokens/stitches.config' import { Box, HStack, VStack } from './LayoutPrimitives' import { Button } from './Button' import { Dropdown, DropdownOption } from './DropdownElements' import { CaretDownIcon } from './icons/CaretDownIcon' type ShowLinkMode = 'none' | 'link' | 'pdf' type SplitButtonProps = { title: string setShowLinkMode: (mode: ShowLinkMode) => void } const CaretButton = (): JSX.Element => { return ( ) } export const SplitButton = (props: SplitButtonProps): JSX.Element => { return ( {/* }> console.log()} title="Archive (e)" /> */} ) }