2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

はじめに

Reactで可愛いアバターアイコンを自動生成するためのライブラリ「boring-avatars」を紹介します。

使い方

非常にシンプルです!

npm install boring-avatars
import Avatar from "boring-avatars";

const App = () => (
  <Avatar
    name="適当な文字列"
    size={40}
    variant="marble"
  />
);

nameに入れた文字列によってアバターアイコンが変わります。
ここをユーザ名などにすれば、ユーザ名に応じたアバターアイコンを自動生成することができますね。
variantにはmarble,beam,pixel,sunset,ring,bauhausがあります。
それぞれのサンプルを見てみましょう。

こちらのサイトでもサンプルを試すことができます!

marble

marble.png

beam

beam.png

pixel

pixel.png

sunset

sunset.png

ring

ring.png

bauhaus

bauhaus.png

おわりに

Webサービスを作る際の参考になれば幸いです。

2
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?