mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
9 lines
308 B
JavaScript
9 lines
308 B
JavaScript
import React from 'react';
|
|
import GravatarImg from './gravatar-img';
|
|
|
|
export default { title: 'Iconography | Gravatar' };
|
|
|
|
export const _default = () => <GravatarImg email="support@insomnia.rest" size={200} />;
|
|
|
|
export const _rounded = () => <GravatarImg rounded email="support@insomnia.rest" size={200} />;
|