zsh — myndui
$ npm install @myndui/components
added 1 package in 1.2s
$ npm run build
▲ Compiled successfully
✓ Ready in 240ms
Terminal
tsx
import { Terminal } from "@/components/myndui/terminal";export function Install() {return ( <Terminal title="zsh — myndui" loop lines={[ { text: "npm install @myndui/components", type: "command" }, { text: "added 1 package in 1.2s", type: "output", delay: 500 }, { text: "npm run build", type: "command" }, { text: "✓ Ready in 240ms", type: "output", delay: 300 }, ]} />);}