Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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