| 12345678910111213141516171819202122 |
- import React from 'react'
- import {Link} from 'react-router-dom';
-
- const CustomLink = ({href, downloadFile, bg, txt, children}) => {
-
-
- return (
- // <a href={href} {...(downloadFile && { download="My_File.pdf" })} (downloadFile download="My_File.pdf")>
- // {context}
- // </a>
- <Link {...{
- className: 'btn-primary w-fit items-center n-paragraph-title text-white rounded-[16px]' ,
- to: href,
- target: '_blank',
- ...(downloadFile && {download: downloadFile}),
- }}>
- {children}
- </Link>
- )
- }
-
- export default CustomLink
|