@gardenfi/garden-book 0.1.34 → 0.1.35
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -5,6 +5,8 @@ type BlogCardProps = {
|
|
|
5
5
|
category: string;
|
|
6
6
|
date: string;
|
|
7
7
|
title: string;
|
|
8
|
+
className?: string;
|
|
9
|
+
thumbnailClassName?: string;
|
|
8
10
|
};
|
|
9
11
|
/**
|
|
10
12
|
* BlogCard
|
|
@@ -12,6 +14,8 @@ type BlogCardProps = {
|
|
|
12
14
|
* @param category of the blog
|
|
13
15
|
* @param date of publishing for blog
|
|
14
16
|
* @param title of the blog
|
|
17
|
+
* @param className for the blog card itself
|
|
18
|
+
* @param thumbnailClassName for the image inside blog card
|
|
15
19
|
* @returns BlogCard component
|
|
16
20
|
*/
|
|
17
21
|
export declare const BlogCard: React.FC<BlogCardProps>;
|