diff --git a/src/components/FavoriteButton.tsx b/src/components/FavoriteButton.tsx new file mode 100644 index 0000000..34d3cb5 --- /dev/null +++ b/src/components/FavoriteButton.tsx @@ -0,0 +1,14 @@ +type FavoriteButtonProps = { + isFavorite: boolean +} + +export function FavoriteButton({ isFavorite }: FavoriteButtonProps) { + return ( + + ) +} \ No newline at end of file