mirror of
https://github.com/AgentSeal/codeburn.git
synced 2026-08-01 12:25:31 +00:00
- --sp-1..7 scale; card headers unified on 10x14, bodies on 12x14; orphan gaps snapped to rungs - CapsuleChart's orphaned CSS deleted - StaleBanner/budget/empty/range notes moved from inline styles to plain.css classes; Panel bodyStyle prop retired (scroll-x class) - thin always-visible scrollbars on scrolling panels and overflow-x tables; Compare pickers flex below 760px instead of overflowing - one capitalization fix (loading quota…) 235/235, build green.
6 lines
228 B
TypeScript
6 lines
228 B
TypeScript
import type { ReactNode } from 'react'
|
|
|
|
/** The canonical empty/placeholder note: muted text at one size. */
|
|
export function EmptyNote({ children }: { children: ReactNode }) {
|
|
return <p className="empty-note">{children}</p>
|
|
}
|