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