OOKNET                             [ /  search the index  ]  
──────────────────────────────────────────────────────────────────────────────────────
══════════════════════════════════════════════════════════════════════════════════════
OOKNET   [ /  search  ]  
────────────────────────────────────────────────
════════════════════════════════════════════════
 
 
master @ 12 LINES
 
[ HISTORY ]  [ UP ]
 

import { len } from "../../lib/ascii";

export interface Props {
  label: string;
  name: string;
  checked?: boolean;
  disabled?: boolean;
}

// "[x] " + label
export const checkboxWidth = (label: string) => len(label) + 4;

import { len } from "../../lib/ascii";

export interface Props {
  label: string;
  name: string;
  checked?: boolean;
  disabled?: boolean;
}

// "[x] " + label
export const checkboxWidth = (label: string)
 => len(label) + 4;
 
──────────────────────────────────────────────────────────────────────────────────────
OOKNET
────────────────────────────────────────────────
OOKNET