Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

thinkful-ui

Package Overview
Dependencies
Maintainers
2
Versions
281
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

thinkful-ui - npm Package Compare versions

Comparing version 0.2.6 to 0.2.7

2

package.json
{
"name": "thinkful-ui",
"version": "0.2.6",
"version": "0.2.7",
"description": "Shared navigation and UI resources for Thinkful.",

@@ -5,0 +5,0 @@ "main": "src/index.es6",

@@ -13,9 +13,11 @@ const React = require('react');

email: React.PropTypes.string.isRequired,
style: React.PropTypes.string,
size: React.PropTypes.number
default: React.PropTypes.string,
size: React.PropTypes.number,
style: React.PropTypes.object
}
static defaultProps = {
style: 'retro',
size: 200
default: 'retro',
size: 200,
style: {}
}

@@ -26,6 +28,7 @@

className={`gravatar ${this.props.className || ''}`}
src={`${URL}/${MD5.hash(this.props.email)}?d=${this.props.style}&s=${this.props.size}`}/>
src={`${URL}/${MD5.hash(this.props.email)}?d=${this.props.default}&s=${this.props.size}`}
style={this.props.style || {}}/>
}
}
export {Gravatar};
export {Gravatar};
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc