added more space between icons and text
This commit is contained in:
parent
ace4fc82a9
commit
e95810df99
1 changed files with 6 additions and 3 deletions
|
@ -100,15 +100,18 @@ export default class PostCard extends React.Component<PostCardProps> {
|
|||
<></>
|
||||
)}
|
||||
</TagList>
|
||||
<FontAwesomeIcon icon={faCalendar} />{" "}
|
||||
<FontAwesomeIcon icon={faCalendar} />
|
||||
|
||||
{this.props.postData?.date || "Unknown date"}
|
||||
|
||||
<FontAwesomeIcon icon={faHourglass} />{" "}
|
||||
<FontAwesomeIcon icon={faHourglass} />
|
||||
|
||||
{this.props.postData?.readTime
|
||||
? this.props.postData.readTime + " read"
|
||||
: "unknown length"}
|
||||
|
||||
<FontAwesomeIcon icon={faBook} />{" "}
|
||||
<FontAwesomeIcon icon={faBook} />
|
||||
|
||||
{this.props.postData?.wordCount
|
||||
? this.props.postData.wordCount + " words"
|
||||
: "unknown words"}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue