Drop two helpers nothing calls

This commit is contained in:
2026-09-08 15:24:01 -07:00
parent 5f8ad511f0
commit 08b2cc5391
3 changed files with 0 additions and 9 deletions
-5
View File
@@ -53,11 +53,6 @@ export function Line({ children, className = '' }: { children?: ReactNode; class
return <div className={`line ${className}`}>{children ?? ' '}</div>
}
/** Atari inverse video: light background, dark characters. */
export function Inv({ children }: { children: ReactNode }) {
return <span className="inv">{children}</span>
}
export function Btn({
children,
onClick,