/** * Higher-level "Claude Code"-style components built on the Ashlar renderer * primitives: an animated streaming {@link Spinner} with selectable glyph * presets, a determinate {@link ProgressBar}, and a keyboard/mouse-navigable * {@link Select} list. The animation building blocks they compose with live in * `ashlar/animation`. */ export { ProgressBar, type ProgressBarProps, } from "./progress-bar.tsx"; export { Select, type SelectProps, } from "./select.tsx"; export { SPINNER_GLYPHS, Spinner, type SpinnerProps, } from "./spinner.tsx";