summaryrefslogtreecommitdiff
path: root/packages/cli/src/ui/utils/isNarrowWidth.ts
blob: 5540a4001615235dc5e01195ea97d353b7c13752 (plain)
1
2
3
4
5
6
7
8
9
/**
 * @license
 * Copyright 2025 Google LLC
 * SPDX-License-Identifier: Apache-2.0
 */

export function isNarrowWidth(width: number): boolean {
  return width < 80;
}