master @ 12 LINES
[ HISTORY ] [ UP ]
┌─ TS ───────────────────────────────────────────────────────────────────────┐
│ export interface Props { │
│ label: string; │
│ name: string; │
│ checked?: boolean; │
│ disabled?: boolean; │
│ } │
│ │
│ // "[ off ]" / "[ ON ]" - both 7 cells. │
│ export const SWITCH_W = 7; │
│ │
│ export const switchWidth = (label: string) => SWITCH_W + 1 + [...label].length; │
└────────────────────────────────────────────────────────────────────────────────────┘
┌─ TS ─────────────────────────────────┐
│ export interface Props { │
│ label: string; │
│ name: string; │
│ checked?: boolean; │
│ disabled?: boolean; │
│ } │
│ │
│ // "[ off ]" / "[ ON ]" - both 7 cells. │
│ export const SWITCH_W = 7; │
│ │
│ export const switchWidth = (label: string) = │
│ > SWITCH_W + 1 + [...label].length; │
└──────────────────────────────────────────────┘
──────────────────────────────────────────────────────────────────────────────────────
OOKNET
────────────────────────────────────────────────
OOKNET