import { isAndroid } from '../../lib/deviceType' import { styled, theme } from '../tokens/stitches.config' import { Button } from '../elements/Button' import { HStack, Box } from '../elements/LayoutPrimitives' import { Circle, CheckCircle } from '@phosphor-icons/react' import { LabelIcon } from '../elements/icons/LabelIcon' import { NotebookIcon } from '../elements/icons/NotebookIcon' import { highlightColor, highlightColors } from '../../lib/themeUpdater' import { useState } from 'react' import { CopyIcon } from '../elements/icons/CopyIcon' type PageCoordinates = { pageX: number pageY: number } type LinkHoverBarProps = { anchorCoordinates: PageCoordinates handleButtonClick: () => void } export function LinkHoverBar(props: LinkHoverBarProps): JSX.Element { console.log('settingh link hover, ', props) return ( Save to Omnivore ) }