Socket
Socket
Sign inDemoInstall

genesys-dev-icons

Package Overview
Dependencies
Maintainers
1
Versions
77
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

genesys-dev-icons - npm Package Compare versions

Comparing version 0.1.6 to 0.1.7

5

lib/GenesysDevIcon.d.ts

@@ -6,4 +6,9 @@ /// <reference types="react" />

icon: GenesysDevIcons;
className?: string;
onClick?: GenesysDevIconClicked;
}
export interface GenesysDevIconClicked {
(): void;
}
export default function GenesysDevIcon(props: IProps): JSX.Element;
export {};

7

lib/GenesysDevIcon.js

@@ -25,4 +25,9 @@ "use strict";

function GenesysDevIcon(props) {
return React.createElement("i", { className: "icon icon-" + props.icon });
return (React.createElement("i", { className: "icon icon-" + props.icon + " " + (props.className || ''), onClick: function (e) {
if (props.onClick) {
e.stopPropagation();
props.onClick();
}
} }));
}
exports.default = GenesysDevIcon;

2

package.json
{
"name": "genesys-dev-icons",
"version": "0.1.6",
"version": "0.1.7",
"private": false,

@@ -5,0 +5,0 @@ "description": "This project amalgamates public-facing Genesys brand icons, Genesys product icons, and general application iconography into a packaged icon library.",

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