cube-tui 0.1.7

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

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