rte-utils 1.2.310 → 1.2.312

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,3 +1,4 @@
1
+ import React from 'react';
1
2
  import './Button.css';
2
3
  interface ButtonProps {
3
4
  text: string;
@@ -10,6 +11,7 @@ interface ButtonProps {
10
11
  textColor?: string;
11
12
  borderColor?: string;
12
13
  size?: 'small' | 'medium' | 'large';
14
+ style?: React.CSSProperties;
13
15
  }
14
- export declare const Button: ({ text, leftIcon, rightIcon, onClick, disabled, className, bgColor, textColor, borderColor, size, }: ButtonProps) => import("react/jsx-runtime").JSX.Element;
16
+ export declare const Button: ({ text, leftIcon, rightIcon, onClick, disabled, className, bgColor, textColor, borderColor, size, style, }: ButtonProps) => import("react/jsx-runtime").JSX.Element;
15
17
  export {};
@@ -20,3 +20,4 @@ export declare const BothIconsCustom: Story;
20
20
  export declare const WithBorder: Story;
21
21
  export declare const BorderWithIcon: Story;
22
22
  export declare const BorderSmallSize: Story;
23
+ export declare const CustomStyle: Story;
@@ -72,6 +72,8 @@ export declare const CloudRainIcon: React.FC<IconProps>;
72
72
  export declare const CloudSnowIcon: React.FC<IconProps>;
73
73
  export declare const SunIcon: React.FC<IconProps>;
74
74
  export declare const WindIcon: React.FC<IconProps>;
75
+ export declare const CrossIcon: React.FC<IconProps>;
76
+ export declare const DeclineRoundedIcon: React.FC<IconProps>;
75
77
  export declare const Icons: {
76
78
  Send: React.FC<IconProps>;
77
79
  Edit: React.FC<IconProps>;
@@ -137,5 +139,7 @@ export declare const Icons: {
137
139
  Sun: React.FC<IconProps>;
138
140
  CloudRain: React.FC<IconProps>;
139
141
  CloudLightning: React.FC<IconProps>;
142
+ DeclineRounded: React.FC<IconProps>;
143
+ Cross: React.FC<IconProps>;
140
144
  };
141
145
  export default Icons;