Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

CustomLink.jsx 577B

12345678910111213141516171819202122
  1. import React from 'react'
  2. import {Link} from 'react-router-dom';
  3. const CustomLink = ({href, downloadFile, bg, txt, children}) => {
  4. return (
  5. // <a href={href} {...(downloadFile && { download="My_File.pdf" })} (downloadFile download="My_File.pdf")>
  6. // {context}
  7. // </a>
  8. <Link {...{
  9. className: 'btn-primary w-fit items-center n-paragraph-title text-white rounded-[16px]' ,
  10. to: href,
  11. target: '_blank',
  12. ...(downloadFile && {download: downloadFile}),
  13. }}>
  14. {children}
  15. </Link>
  16. )
  17. }
  18. export default CustomLink