import { BookOpen } from 'lucide-react'
import { Button } from 'ui'
interface DocsButtonProps {
href: string
abbrev?: boolean
className?: string
}
export const DocsButton = ({ href, abbrev = true, className }: DocsButtonProps) => {
return (
}
onClick={(e) => e.stopPropagation()}
>
{abbrev ? 'Docs' : 'Documentation'}
)
}