File tree Expand file tree Collapse file tree 1 file changed +7
-9
lines changed Expand file tree Collapse file tree 1 file changed +7
-9
lines changed Original file line number Diff line number Diff line change 11import React from "react" ;
22import Card from "react-bootstrap/Card" ;
3- // import Button from "react-bootstrap/Button";
4- // import { CgWebsite } from "react-icons/cg";
3+ import Button from "react-bootstrap/Button" ;
4+ import { CgArrowRight } from "react-icons/cg" ;
55//import { BsGithub } from "react-icons/bs";
66
77function ProjectCards ( props ) {
@@ -20,21 +20,19 @@ function ProjectCards(props) {
2020 { "\n" }
2121 { "\n" }
2222
23- { /* If the component contains Demo link and if it's not a Blog then, it will render the below component */ }
24-
2523 { ! props . isBlog && props . demoLink && (
26- { /* <Button
24+ < Button
2725 variant = "primary"
2826 href = { props . demoLink }
2927 target = "_blank"
3028 style = { { marginLeft : "10px" } }
3129 >
32- <CgWebsite />
33- {"Demo "}
34- </Button> */ }
30+ < CgArrowRight />
31+ { "Visit " }
32+ </ Button >
3533 ) }
3634 </ Card . Body >
3735 </ Card >
3836 ) ;
3937}
40- export default ProjectCards ;
38+ export default ProjectCards ;
You can’t perform that action at this time.
0 commit comments