UNPKG

react-terminal-ui

Version:

A terminal react component with support for light and dark modes.

7 lines (6 loc) 245 B
import React, { PropsWithChildren } from "react"; type TerminalInputProps = PropsWithChildren<{ prompt?: string; }>; declare const TerminalInput: ({ children, prompt }: TerminalInputProps) => React.JSX.Element; export default TerminalInput;