cube-tui 0.1.9

Terminal UI timer and session manager for speedcubing, with optional web dashboard and BLE (GAN) timer support.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
interface CubeLogoProps {
	size?: number;
}

export function CubeLogo({ size = 32 }: CubeLogoProps) {
	return (
		<img
			src="/trace.svg"
			width={size}
			height={size}
			alt="Cube-TUI logo"
			className="logo-img"
		/>
	);
}