'use client' import * as React from 'react' import { cn } from '@open-mercato/shared/lib/utils' import type { FloatingPosition } from '../../types' export interface AiDotProps { onClick: () => void isActive?: boolean hasMessages?: boolean position: FloatingPosition className?: string } const floatingPositionStyles: Record = { 'bottom-right': { bottom: 24, right: 24 }, 'bottom-left': { bottom: 24, left: 24 }, 'top-right': { top: 24, right: 24 }, 'top-left': { top: 24, left: 24 }, } export function AiDot({ onClick, isActive, hasMessages, position, className }: AiDotProps) { return ( ) } export default AiDot