+
+
+
setLiked(!liked)} className="likeButton" src={liked? 'likeButtonActive.svg':'likeButton.svg'}>
+
+
+ {props.title}
+
+ {props.location}
+
+
+ );
+}
\ No newline at end of file
diff --git a/src/elements/FavoriteCard/style.css b/src/elements/FavoriteCard/style.css
new file mode 100644
index 0000000..3ebc72c
--- /dev/null
+++ b/src/elements/FavoriteCard/style.css
@@ -0,0 +1,30 @@
+.favoriteCard{
+ display: block;
+}
+
+.imageFavoriteCard{
+ border-radius: 30px;
+}
+.likeButton{
+ cursor: pointer;
+ transition: 0.3s;
+ transform: translateY(-60px) translateX(10px);
+}
+.likeButton:hover{
+ transform: scale(1.1);
+}
+.titleFavoriteCard{
+ margin-top: 10px;
+ font-size: 18px;
+ font-weight: 500;
+}
+.locationFavoriteCard{
+ font-size: 16px;
+}
+.img-cnt{
+ display: flex;
+ flex-direction: column;
+}
+.tr-cnt{
+ transform: translateY(-40px);
+}
\ No newline at end of file
diff --git a/src/elements/GenerateCard/index.tsx b/src/elements/GenerateCard/index.tsx
new file mode 100644
index 0000000..1a80e18
--- /dev/null
+++ b/src/elements/GenerateCard/index.tsx
@@ -0,0 +1,28 @@
+import React from "react";
+import { Button } from '../Button'
+import { Block } from '../Block'
+import './style.css'
+
+
+
+
+
+
+export const GenerateCard:React.FC = (props) =>{
+
+
+ return(
+