()
| 1 | export function TailwindIndicator() { |
| 2 | if (process.env.NODE_ENV === "production") return null |
| 3 | |
| 4 | return ( |
| 5 | <div className="fixed bottom-1 left-1 z-50 flex size-6 items-center justify-center rounded-full bg-gray-800 p-3 font-mono text-xs text-white"> |
| 6 | <div className="block sm:hidden">xs</div> |
| 7 | <div className="hidden sm:block md:hidden">sm</div> |
| 8 | <div className="hidden md:block lg:hidden">md</div> |
| 9 | <div className="hidden lg:block xl:hidden">lg</div> |
| 10 | <div className="hidden xl:block 2xl:hidden">xl</div> |
| 11 | <div className="hidden 2xl:block">2xl</div> |
| 12 | </div> |
| 13 | ) |
| 14 | } |
nothing calls this directly
no outgoing calls
no test coverage detected