mirror of
https://github.com/johndoe6345789/low-code-react-app-b.git
synced 2026-05-02 01:24:56 +00:00
53 lines
1.9 KiB
TypeScript
53 lines
1.9 KiB
TypeScript
import { FileCode, CheckCircle, Sparkle } from '@phosphor-icons/react'
|
|
|
|
export function AgentFileItem({ filename, path, description, features, featureLabel }: {
|
|
filename: string
|
|
path: string
|
|
description: string
|
|
features: string[]
|
|
featureLabel: string
|
|
}) {
|
|
return (
|
|
<div className="space-y-3 border-l-2 border-accent pl-4">
|
|
<div className="space-y-1">
|
|
<div className="flex items-center gap-2">
|
|
<FileCode size={18} className="text-accent" />
|
|
<code className="text-sm font-semibold text-accent">{filename}</code>
|
|
</div>
|
|
<p className="text-xs text-muted-foreground font-mono">{path}</p>
|
|
<p className="text-sm text-foreground/90">{description}</p>
|
|
</div>
|
|
<div className="space-y-1">
|
|
<p className="text-xs font-semibold text-muted-foreground uppercase tracking-wide">{featureLabel}</p>
|
|
<ul className="space-y-1">
|
|
{features.map((feature) => (
|
|
<li key={feature} className="text-sm text-foreground/80 flex items-start gap-2">
|
|
<CheckCircle size={14} weight="fill" className="text-accent mt-1 flex-shrink-0" />
|
|
<span>{feature}</span>
|
|
</li>
|
|
))}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export function IntegrationPoint({ component, capabilities }: { component: string; capabilities: string[] }) {
|
|
return (
|
|
<div className="space-y-2 border rounded-lg p-4 bg-card">
|
|
<h4 className="font-semibold text-sm flex items-center gap-2">
|
|
<Sparkle size={16} weight="duotone" className="text-accent" />
|
|
{component}
|
|
</h4>
|
|
<ul className="space-y-1">
|
|
{capabilities.map((capability) => (
|
|
<li key={capability} className="text-sm text-muted-foreground flex items-start gap-2">
|
|
<span className="text-accent">•</span>
|
|
<span>{capability}</span>
|
|
</li>
|
|
))}
|
|
</ul>
|
|
</div>
|
|
)
|
|
}
|