Advice for the easiest way to input time

Has anyone come up with a good way to easily enter time, without the date?

I am looking for a way a user can easily enter a start and end time of a process, without having to deal with selecting the day - that will be determined in an earlier step. Sort of like how [html <input type="time">] (https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/time) looks.

The Popup Calendar component does what I want, but I don’t want the calendar portion of it.

Any ideas?

Here, we are using the Spinner component with the appropriate date format that we want.
It generates a date in its dateValue property (ex: 1970-01-01 14:53:00).
Then we just system.date.format() it to our convenience where we need it.

That’s what I was looking for! Never thought to look at the spinner. Thanks!