New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@eubank/kit-loader

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@eubank/kit-loader - npm Package Compare versions

Comparing version 0.0.8 to 0.1.0

4

cjs/Component.js

@@ -30,4 +30,4 @@ 'use strict';

const Loader = (props) => {
const { size = 'l', variant = 'primary' } = props;
return (React__namespace.createElement("div", { className: clsx(cls.root) },
const { size = 'l', variant = 'primary', style } = props;
return (React__namespace.createElement("div", { className: clsx(cls.root), style: style },
React__namespace.createElement("span", { className: clsx(cls.wrapper, cls[size], cls[variant]) },

@@ -34,0 +34,0 @@ React__namespace.createElement(components_Loader.LoaderIcon, null))));

@@ -0,5 +1,7 @@

import { CSSProperties } from 'react';
interface LoaderProps {
size?: 'xs' | 's' | 'm' | 'l' | 'xl';
variant?: 'primary' | 'secondary';
style?: CSSProperties;
}
export { LoaderProps };

@@ -9,4 +9,4 @@ import * as React from 'react';

const Loader = (props) => {
const { size = 'l', variant = 'primary' } = props;
return (React.createElement("div", { className: clsx(cls.root) },
const { size = 'l', variant = 'primary', style } = props;
return (React.createElement("div", { className: clsx(cls.root), style: style },
React.createElement("span", { className: clsx(cls.wrapper, cls[size], cls[variant]) },

@@ -13,0 +13,0 @@ React.createElement(LoaderIcon, null))));

@@ -0,5 +1,7 @@

import { CSSProperties } from 'react';
interface LoaderProps {
size?: 'xs' | 's' | 'm' | 'l' | 'xl';
variant?: 'primary' | 'secondary';
style?: CSSProperties;
}
export { LoaderProps };
{
"name": "@eubank/kit-loader",
"version": "0.0.8",
"version": "0.1.0",
"description": "Loader",

@@ -5,0 +5,0 @@ "license": "ISC",

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