@gardenfi/garden-book 0.1.86 → 0.1.88

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.
@@ -0,0 +1,9 @@
1
+ import { FC, ReactNode } from 'react';
2
+
3
+ type BottomSheetProps = {
4
+ children: ReactNode;
5
+ open: boolean;
6
+ onOpenChange?: (open: boolean) => void;
7
+ };
8
+ export declare const BottomSheet: FC<BottomSheetProps>;
9
+ export {};
@@ -0,0 +1,7 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import { BottomSheet } from './BottomSheet';
3
+
4
+ declare const meta: Meta<typeof BottomSheet>;
5
+ export default meta;
6
+ type Story = StoryObj<typeof meta>;
7
+ export declare const Primary: Story;
@@ -0,0 +1,5 @@
1
+ import { default as React } from 'react';
2
+
3
+ type SvgProps = React.SVGProps<SVGSVGElement>;
4
+ export declare const GasStationIcon: React.FC<SvgProps>;
5
+ export {};
@@ -0,0 +1,5 @@
1
+ import { default as React } from 'react';
2
+
3
+ type SvgProps = React.SVGProps<SVGSVGElement>;
4
+ export declare const SwapHorizontalIcon: React.FC<SvgProps>;
5
+ export {};
@@ -52,3 +52,5 @@ export { RelayLinkIcon } from './RelayLinkIcon';
52
52
  export { ThorswapIcon } from './ThorswapIcon';
53
53
  export { DeleteIcon } from './DeleteIcon';
54
54
  export { WarningIcon } from './WarningIcon';
55
+ export { SwapHorizontalIcon } from './SwapHorizontalIcon';
56
+ export { GasStationIcon } from './GasStationIcon';
@@ -3,8 +3,9 @@ import { Typography } from './Typography/Typography';
3
3
  import { Opacity } from './Opacity/Opacity';
4
4
  import { Sidebar } from './Sidebar/Sidebar';
5
5
  import { Modal } from './Modal/Modal';
6
+ import { BottomSheet } from './BottomSheet/BottomSheet';
6
7
  export type { OpacityVariants } from './Opacity/Opacity';
7
8
  export * from './Icons';
8
9
  export * from './Logo';
9
10
  export { CheckBox } from './Checkbox/Checkbox';
10
- export { Button, Typography, Sidebar, Opacity, Modal };
11
+ export { Button, Typography, Sidebar, Opacity, Modal, BottomSheet };