Skip to content
Snippets Groups Projects
Avatar.md 245 B
Newer Older
A general purpose Avatar element.

```js
const statusFactory = () => {
Alexandros Georgantas's avatar
Alexandros Georgantas committed
  const statuses = ['Accepted', 'Pending', 'Declined', 'Submitted']
  return statuses[Math.floor(Math.random() * statuses.length)]
};

<Avatar status={statusFactory()}/>
```