import { cn } from "@/utils/style"; type BreakpointIndicatorProps = { position?: "top-right" | "bottom-right" | "top-left" | "bottom-left"; }; export function BreakpointIndicator({ position = "bottom-right" }: BreakpointIndicatorProps) { const isTop = position.includes("top"); const isRight = position.includes("right"); const isLeft = position.includes("left"); const isBottom = position.includes("bottom"); const top = isTop ? "top-0" : "bottom-0"; const right = isRight ? "inset-e-0" : "inset-s-0"; const left = isLeft ? "inset-s-0" : "inset-e-0"; const bottom = isBottom ? "bottom-0" : "top-0"; return (