Files
mintlify[bot] 0ea1a427cc docs: translate Mintlify Index updates (#6892)
Co-authored-by: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com>
2026-08-06 06:57:31 +00:00

7 lines
299 B
React

export const PreviewButton = ({ children, href }) => {
return (
<a href={href} className="text-sm font-medium text-white dark:!text-zinc-950 bg-zinc-900 hover:bg-zinc-700 dark:bg-zinc-100 hover:dark:bg-zinc-300 rounded-full px-3.5 py-1.5 not-prose">
{children}
</a>
)
}