import { Check, Download } from "lucide-react"; import { Badge } from "../ui/badge"; import { Button } from "../ui/button"; import { Label } from "../ui/label"; import { Card, CardHeader, CardTitle, CardDescription, CardContent, } from "../ui/card"; export function PipelineOutputConfig() { return ( Output Configuration Configure how your data will be structured and exported
JSON

Structured data format

CSV

Spreadsheet compatible

SQLite

Portable database

YAML

Human-readable format

Sample Data
                {`{
  "properties": [
    {
      "id": "P001",
      "title": "Modern Apartment",
      "price": 350000,
      "bedrooms": 2,
      "location": "Downtown"
    },
    {
      "id": "P002",
      "title": "Luxury Villa",
      "price": 1250000,
      "bedrooms": 5,
      "location": "Suburbs"
    }
  ]
}`}
              
); }