Files
flashcards-docs/components/download-link/index.tsx
2023-06-25 14:10:06 +02:00

18 lines
472 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

export const DownloadLink = ({ href }: { href: string }) => {
return (
<p style={{ marginTop: 24 }}>
<a
id="raw-url"
download
href={href}
className={
'nx-text-primary-600 nx-underline nx-decoration-from-font [text-underline-position:from-font]'
}
>
Скачайте файл watchers.xml
</a>{' '}
и импортируйте его в Settings | Tools | File Watchers
</p>
)
}