@boxcustodia/library 2.0.0-alpha.14 → 2.0.0-alpha.15

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.
package/dist/index.d.ts CHANGED
@@ -389,7 +389,7 @@ export declare type BaseEntity = {
389
389
  createdAt: Date;
390
390
  };
391
391
 
392
- export declare const Button: ({ variant, size, className, icon, children, ...rest }: Props) => JSX.Element;
392
+ export declare const Button: ({ variant, size, className, ...rest }: Props) => JSX.Element;
393
393
 
394
394
  declare type ButtonOverrides = Omit<ComponentProps<typeof Button>, "onClick" | "disabled" | "render" | "children" | "nativeButton">;
395
395
 
@@ -1182,7 +1182,7 @@ export declare type ID = string | number;
1182
1182
 
1183
1183
  export declare function Input({ className, nativeInput, onValueChange, ...props }: InputProps): JSX.Element;
1184
1184
 
1185
- export declare const inputBaseClasses = "h-10 w-full px-3 py-2 rounded-md border border-input bg-background text-sm outline-none transition-shadow placeholder:text-muted-foreground";
1185
+ export declare const inputBaseClasses = "h-8 w-full px-3 rounded-md border border-input bg-background text-sm outline-none transition-shadow placeholder:text-muted-foreground";
1186
1186
 
1187
1187
  export { InputPrimitive }
1188
1188
 
@@ -1700,9 +1700,7 @@ declare const progressTrackVariants: (props?: ({
1700
1700
 
1701
1701
  export declare function ProgressValue({ className, ...props }: Progress_2.Value.Props): React_2.ReactElement;
1702
1702
 
1703
- declare type Props = BaseButtonProps & VariantProps<typeof buttonVariants> & {
1704
- icon?: ReactElement;
1705
- };
1703
+ declare type Props = BaseButtonProps & VariantProps<typeof buttonVariants>;
1706
1704
 
1707
1705
  declare interface Props_2 extends ComponentProps<typeof Button_2> {
1708
1706
  loading?: boolean;