Minimum
The breakpoint display at the top of the screen shows the current breakpoint
// Default behavior - fixed at top of viewport// Uses default Tailwind breakpoints: sm, md, lg, xl, 2xl<BreakpointDisplay />Minimum
// Absolute positioning with extra breakpoints// Result: xxs, xs, sm, md, lg, xl, 2xl, 3xl<div className="relative"> <BreakpointDisplay position="absolute" extraBreakpoints={["xxs", "xs", "3xl"]} /></div>Minimum
// Relative positioning - displays inline<BreakpointDisplay position="relative" />position - "fixed" | "absolute" | "relative" (default: "fixed") - Positioning strategyextraBreakpoints - Array<"xxs" | "xs" | "3xl"> - Additional breakpoints beyond defaultsclassName - stringThe component uses Tailwind's standard breakpoints by default:
sm - 640pxmd - 768pxlg - 1024pxxl - 1280px2xl - 1536pxExtra breakpoints (xxs, xs, 3xl) can be added via the extraBreakpoints prop. The actual pixel values for these are defined in your Tailwind configuration.