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

@oxyhq/services

Package Overview
Dependencies
Maintainers
1
Versions
68
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@oxyhq/services - npm Package Compare versions

Comparing version 0.0.6 to 0.0.7

9

dist/components/auth/SignInButton.d.ts
import React from "react";
interface SignInButtonProps {
onClick: () => void;
}
declare const SignInButton: React.FC<SignInButtonProps>;
export declare const SignInButton: ({ onClick, icon, text, }: {
onClick?: () => void;
icon?: React.ReactNode;
text: string;
}) => React.JSX.Element;
export default SignInButton;
//# sourceMappingURL=SignInButton.d.ts.map
import React from "react";
const SignInButton = ({ onClick }) => {
return (React.createElement("button", { onClick: onClick, style: styles.button }, "Sign in with Oxy"));
export const SignInButton = ({ onClick, icon, text = "Sign in with Oxy", }) => {
return (React.createElement("button", { onClick: onClick, style: styles.container },
icon && icon,
text));
};
const styles = {
button: {
container: {
padding: "0.7em",

@@ -8,0 +10,0 @@ borderRadius: "100vmax",

{
"name": "@oxyhq/services",
"version": "0.0.6",
"version": "0.0.7",
"description": "",

@@ -5,0 +5,0 @@ "homepage": "https://oxy.so/",

Sorry, the diff of this file is not supported yet

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