26 lines
491 B
TypeScript
26 lines
491 B
TypeScript
"use client"
|
|
|
|
import React from "react"
|
|
import { Button } from "docs-ui"
|
|
import { useArea } from "@/providers/area"
|
|
import Link from "next/link"
|
|
|
|
const DownloadFull = () => {
|
|
const { area } = useArea()
|
|
|
|
return (
|
|
<Button variant="secondary">
|
|
<Link
|
|
href={`/download/${area}`}
|
|
download
|
|
target="_blank"
|
|
data-testid="download-full-link"
|
|
>
|
|
Download OpenApi Specs Collection
|
|
</Link>
|
|
</Button>
|
|
)
|
|
}
|
|
|
|
export default DownloadFull
|