UNPKG

terminal-lite

Version:

A lightweight customizable terminal-like React component.

9 lines 295 B
import React from "react"; interface TerminalProps { title: string; children?: React.ReactNode; className?: string; } declare const Terminal: ({ title, children, className }: TerminalProps) => React.JSX.Element; export default Terminal; //# sourceMappingURL=Terminal.d.ts.map