{"id":13494819,"url":"https://github.com/nusu/avvvatars","last_synced_at":"2025-05-15T15:09:34.040Z","repository":{"id":42710901,"uuid":"469388360","full_name":"nusu/avvvatars","owner":"nusu","description":"Beautifully crafted unique avatar placeholder for your next react project","archived":false,"fork":false,"pushed_at":"2024-07-08T23:46:44.000Z","size":1904,"stargazers_count":1885,"open_issues_count":6,"forks_count":83,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-31T19:11:12.750Z","etag":null,"topics":["avatar","avatar-generator","avatar-placeholder","placeholder-avatars","profile-picture","react"],"latest_commit_sha":null,"homepage":"https://avvvatars.com","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nusu.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-03-13T14:01:39.000Z","updated_at":"2025-03-29T07:18:54.000Z","dependencies_parsed_at":"2024-02-06T12:05:41.430Z","dependency_job_id":"fd68fcba-f490-4a9c-80bc-ebdf7256072b","html_url":"https://github.com/nusu/avvvatars","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nusu%2Favvvatars","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nusu%2Favvvatars/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nusu%2Favvvatars/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nusu%2Favvvatars/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nusu","download_url":"https://codeload.github.com/nusu/avvvatars/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247721898,"owners_count":20985084,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["avatar","avatar-generator","avatar-placeholder","placeholder-avatars","profile-picture","react"],"created_at":"2024-07-31T19:01:28.563Z","updated_at":"2025-04-07T20:11:46.490Z","avatar_url":"https://github.com/nusu.png","language":"TypeScript","funding_links":[],"categories":["Uncategorized","TypeScript"],"sub_categories":["Uncategorized"],"readme":"\n\u003cdiv align=\"center\"\u003e\n  \u003ca href=\"https://avvvatars.com\"\u003e\u003cimg src=\"https://github.com/nusu/avvvatars/raw/main/thumbnail.png\" alt=\"Avvvatars\" height=\"464\"\u003e\u003c/a\u003e\n\u003c/div\u003e\n\n# Avvvatars\n\nBeautifully crafted unique avatar placeholder for your next react project\n\nLightweight and customizable ❤️\n\nhttps://user-images.githubusercontent.com/1702215/158075475-c23004ab-827a-45ad-bdba-aee29ac5b582.mp4\n\n[Live Demo 🧩](https://avvvatars-demo-nusualabuga.vercel.app/) | [Website 🧘‍♀️](https://avvvatars.com)\n\nBuilt by [Nusu Alabuga](https://twitter.com/nusualabuga) and [Oguz Yagiz Kara](https://twitter.com/oguzyagizkara)\n\n🙏 Special thanks to [Monika Michalczyk](https://www.monikamichalczyk.com/) for awesome shapes 🙏\n\n## Features\n\n- 🌈 **40 Colors** - Colors are so on point that most of the projects can use it without changing it\n- 💠 **60 Shapes** - Beautifully crafted shapes that are unique to your user with color combination\n- 🆎 **Text or Shapes** 🔸 - Use letters (eg. JD for John Doe) or unique shapes\n- 🤠 **Unique to user** - Generated avatars are unique to the string that you provide, it means if you pass janedoe@gmail.com you will always get the same avatar\n- 🕊 **Lightweight** - less than 20kb compressed + gzipped\n- ✍️ **Customizable** - use shadows, change size, provide alternative text to display\n\n## Installation\n\n**With yarn**\n\n```jsx\nyarn add avvvatars-react\n```\n\n**With npm**\n\n```jsx\nnpm install avvvatars-react\n```\n\n## Getting Started\n\nImport Avvvatars to your app, then use it anywhere you want.\n\n```jsx\nimport Avvvatars from 'avvvatars-react'\n\nexport default function MyAvatar() {\n  return (\n    \u003cAvvvatars value=\"best_user@gmail.com\" /\u003e\n  )\n}\n```\n\n## Customization\n\n### `value: string`\n\nThis is required for plugin to work, each value generates a random avatar to unique to this value, so each time plugin renders, you will get the same results. \n\n```jsx\n\u003cAvvvatars value=\"best_user@gmail.com\" /\u003e\n```\n\n### `displayValue?: string`\n\nOverride default text by providing displayValue\n\nfor example if you provide `value=”best_user@gmail.com”` the character output will be the first 2 letters of value which is “BE”, if you pass `displayValue=”BU”` you can override it to **BU**\n\n```jsx\n\u003cAvvvatars value=\"best_user@gmail.com\" displayValue=\"BE\" /\u003e\n```\n\n### `style?: character | shape  (default character)`\n\nUse shape or character as avatar.\n\n```jsx\n\u003cAvvvatars value=\"best_user@gmail.com\" style=\"character\" /\u003e\n```\n\n### `size?: number  (default 32)`\n\nOverride default size (32px) by providing a number.\n\n```jsx\n\u003cAvvvatars value=\"best_user@gmail.com\" size={32} /\u003e\n```\n\n### `shadow?: boolean  (default false)`\n\nEnable shadow around the avatar.\n\n```jsx\n\u003cAvvvatars value=\"best_user@gmail.com\" shadow={false} /\u003e\n```\n\n### `radius?: number` (default [size](https://github.com/nusu/avvvatars#size-number--default-32))\n\nOverride the radius of the avatar, it takes `size` by default to always turn it to a circle\n\n```jsx\n\u003cAvvvatars value=\"best_user@gmail.com\" radius={10} /\u003e\n```\n\n### `border?: boolean  (default false)`\n\nToggle border\n\n```jsx\n\u003cAvvvatars value=\"best_user@gmail.com\" border={false} /\u003e\n```\n\n### `borderSize?: number  (default 2)`\n\nOverride border width\n\n```jsx\n\u003cAvvvatars value=\"best_user@gmail.com\" borderSize={2} /\u003e\n```\n\n### `borderColor?: string  (default #fff)`\n\nOverride border color\n\n```jsx\n\u003cAvvvatars value=\"best_user@gmail.com\" borderColor=\"#fff\" /\u003e\n```\n\n## Figma\n\nIf you want to access design files to change something or customize it to your own, use our [Figma File](https://www.figma.com/community/file/1084861895116393858/Avvvatars.com---Open-Source-React-UI-Avatar-Library-(Community))\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnusu%2Favvvatars","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnusu%2Favvvatars","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnusu%2Favvvatars/lists"}