@gardenfi/garden-book 0.1.88-beta.0 → 0.1.89

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.
@@ -4,7 +4,6 @@ type BottomSheetProps = {
4
4
  children: ReactNode;
5
5
  open: boolean;
6
6
  onOpenChange?: (open: boolean) => void;
7
- dark?: boolean;
8
7
  };
9
8
  export declare const BottomSheet: FC<BottomSheetProps>;
10
9
  export {};
@@ -0,0 +1,5 @@
1
+ import { default as React } from 'react';
2
+
3
+ type SvgProps = React.SVGProps<SVGSVGElement>;
4
+ export declare const CancelIcon: React.FC<SvgProps>;
5
+ export {};
@@ -1,7 +1,5 @@
1
1
  import { default as React } from 'react';
2
2
 
3
- type SvgProps = React.SVGProps<SVGSVGElement> & {
4
- className?: string;
5
- };
3
+ type SvgProps = React.SVGProps<SVGSVGElement>;
6
4
  export declare const WalletIcon: React.FC<SvgProps>;
7
5
  export {};
@@ -54,3 +54,4 @@ export { DeleteIcon } from './DeleteIcon';
54
54
  export { WarningIcon } from './WarningIcon';
55
55
  export { SwapHorizontalIcon } from './SwapHorizontalIcon';
56
56
  export { GasStationIcon } from './GasStationIcon';
57
+ export { CancelIcon } from './CancelIcon';
@@ -14,7 +14,7 @@ declare const Modal: React.FC<ModalProps> & {
14
14
  };
15
15
  type ChildrenProps = {
16
16
  children: React.ReactNode;
17
- opacityLevel: OpacityProps['level'];
17
+ opacityLevel: OpacityProps["level"];
18
18
  className?: string;
19
19
  };
20
20
  export { Modal };
@@ -1,7 +1,7 @@
1
1
  import { VariantProps } from 'class-variance-authority';
2
2
  import { default as React } from 'react';
3
3
 
4
- export type OpacityVariants = 'extra-light' | 'light' | 'medium' | 'semi-dark' | 'full';
4
+ export type OpacityVariants = "extra-light" | "light" | "medium" | "semi-dark" | "full";
5
5
  declare const OpacityStyles: (props?: ({
6
6
  level?: "extra-light" | "light" | "medium" | "semi-dark" | "full" | null | undefined;
7
7
  } & import('class-variance-authority/types').ClassProp) | undefined) => string;