build69
build69  /  Components  /  TimeInput /  Source

TimeInput

Keyboard-first 24-hour `HH:MM` time field with real range constraints — hours cap at 23 and minutes at 59, so `87:95` can never be typed. `autofix: 'pad'` pads a leading `9` to `09` instead of rejecting the keystroke. Use it when typing a time is faster than spinning a clock; reach for TimePicker or TimeClock for a picker UI.

3 files2 dependenciestokens resolved ✓
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
"use client";

import * as React from "react";
import { cn } from "@/lib/utils";
import { surface, type Tone, type Emphasis } from "@/lib/recipes";

// TimeInput — Keyboard-first 24-hour `HH:MM` time field with real range constraints — hours cap at 23 
export interface TimeInputProps extends React.ComponentProps<"div"> {
  /** Semantic role: which accent the component uses. */
  tone?: Tone;
  /** Visual loudness: how prominent it reads. */
  emphasis?: Emphasis;
}

export function TimeInput({
  className,
  tone = "primary",
  emphasis = "solid",
  ...props
}: TimeInputProps) {
  return (
    <div
      data-slot="time-input"
      data-tone={tone}
      data-emphasis={emphasis}
      className={cn(
        "inline-flex items-center gap-2 rounded-lg transition-colors",
        surface(tone, emphasis),
        className,
      )}
      {...props}
    />
  );
}