diff --git a/README.md b/README.md
index 1464df2..f76ce06 100644
--- a/README.md
+++ b/README.md
@@ -9,7 +9,7 @@ Embed GitHub stats on your [Astro](https://astro.build) page ✨
Features:
-1. Embed GitHub Account stats
+1. Embed GitHub Account stats (with or without icons)
1. Embed GitHub Account top languages
1. Embed GitHub Repositories info with stars
@@ -28,13 +28,16 @@ Then use on your Astro page:
import GithubStats from 'astro-github-stats';
---
-
+
-
+
+
+
+
-
+
```
@@ -44,6 +47,11 @@ Example Account Card:

+Example Account Card with Icons:
+
+
+
+
Example Account Top Languages:
diff --git a/src/GithubStats.astro b/src/GithubStats.astro
index cffcef3..2fb7292 100644
--- a/src/GithubStats.astro
+++ b/src/GithubStats.astro
@@ -3,10 +3,11 @@ export interface Props {
username: string;
topLanguages?: boolean;
repo?: string;
+ showIcons?: boolean;
}
-const { username, repo, topLanguages } = Astro.props;
+const { username, repo, topLanguages, showIcons } = Astro.props;
const baseUrl = 'https://github-readme-stats.vercel.app/api/';
-let url = `${baseUrl}?username=${username}`;
+let url = `${baseUrl}?username=${username}&show_icons=${!!showIcons}`;
if (repo) {
url = `${baseUrl}/pin/?username=${username}&repo=${repo}`;