react-simple-phone-input 1.0.2-beta → 1.0.3-beta

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,5 @@
1
1
  import React from 'react';
2
+ import "./Button.css";
2
3
  interface ButtonProps extends React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement> {
3
4
  background?: string;
4
5
  }
package/dist/esm/index.js CHANGED
@@ -2800,8 +2800,38 @@ function requireReact_development () {
2800
2800
 
2801
2801
  var React = /*@__PURE__*/getDefaultExportFromCjs(react.exports);
2802
2802
 
2803
+ function styleInject(css, ref) {
2804
+ if ( ref === void 0 ) ref = {};
2805
+ var insertAt = ref.insertAt;
2806
+
2807
+ if (!css || typeof document === 'undefined') { return; }
2808
+
2809
+ var head = document.head || document.getElementsByTagName('head')[0];
2810
+ var style = document.createElement('style');
2811
+ style.type = 'text/css';
2812
+
2813
+ if (insertAt === 'top') {
2814
+ if (head.firstChild) {
2815
+ head.insertBefore(style, head.firstChild);
2816
+ } else {
2817
+ head.appendChild(style);
2818
+ }
2819
+ } else {
2820
+ head.appendChild(style);
2821
+ }
2822
+
2823
+ if (style.styleSheet) {
2824
+ style.styleSheet.cssText = css;
2825
+ } else {
2826
+ style.appendChild(document.createTextNode(css));
2827
+ }
2828
+ }
2829
+
2830
+ var css_248z = ".siButton {\r\n font-size: 14px;\r\n background: red;\r\n border-radius: 4px;\r\n padding: 8px 15px;\r\n color: white;\r\n}";
2831
+ styleInject(css_248z);
2832
+
2803
2833
  const Button = ({ children }) => {
2804
- return (React.createElement("button", null, children));
2834
+ return (React.createElement("button", { className: "siButton" }, children));
2805
2835
  };
2806
2836
 
2807
2837
  export { Button };