@gardenfi/garden-book 0.1.99 → 0.1.100

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,13 @@
1
+ import { ReactNode } from 'react';
2
+
3
+ type ContainerProps = React.HTMLAttributes<HTMLDivElement> & {
4
+ children: ReactNode;
5
+ };
6
+ /**
7
+ * Container
8
+ * @param children of the Container
9
+ * @param className is the spaces separated string which has user-written tailwind classes
10
+ * @returns Container component
11
+ */
12
+ declare const Container: ({ children, className, ...props }: ContainerProps) => import("react/jsx-runtime").JSX.Element;
13
+ export { Container };
@@ -0,0 +1,7 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import { Container } from './Container';
3
+
4
+ declare const meta: Meta<typeof Container>;
5
+ export default meta;
6
+ type Story = StoryObj<typeof Container>;
7
+ export declare const Default: Story;
@@ -0,0 +1,5 @@
1
+ import { default as React } from 'react';
2
+
3
+ type SvgProps = React.SVGProps<SVGSVGElement>;
4
+ export declare const APIIcon: 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 BlogIcon: 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 BrandKitIcon: 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 ConsoleIcon: 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 CopyrightsIcon: 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 DiscordIcon: 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 DraftIcon: 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 OtterSecIcon: 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 SDKIcon: 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 StakeIcon: 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 XIcon: 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 XSolidIcon: 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 ZellicIcon: React.FC<SvgProps>;
5
+ export {};
@@ -58,3 +58,16 @@ export { CancelIcon } from './CancelIcon';
58
58
  export { ArrowSyncIcon } from './ArrowSyncIcon';
59
59
  export { HubIcon } from './HubIcon';
60
60
  export { CodeBlockIcon } from './CodeBlockIcon';
61
+ export { APIIcon } from './APIIcon';
62
+ export { BlogIcon } from './BlogIcon';
63
+ export { BrandKitIcon } from './BrandKitIcon';
64
+ export { ConsoleIcon } from './ConsoleIcon';
65
+ export { CopyrightsIcon } from './CopyrightsIcon';
66
+ export { DiscordIcon } from './DiscordIcon';
67
+ export { DraftIcon } from './DraftIcon';
68
+ export { OtterSecIcon } from './OtterSecIcon';
69
+ export { SDKIcon } from './SDKIcon';
70
+ export { StakeIcon } from './StakeIcon';
71
+ export { XSolidIcon } from './XSolidIcon';
72
+ export { XIcon } from './XIcon';
73
+ export { ZellicIcon } from './ZellicIcon';
@@ -4,8 +4,9 @@ import { Opacity } from './Opacity/Opacity';
4
4
  import { Sidebar } from './Sidebar/Sidebar';
5
5
  import { Modal } from './Modal/Modal';
6
6
  import { BottomSheet } from './BottomSheet/BottomSheet';
7
+ import { Container } from './Container/Container';
7
8
  export type { OpacityVariants } from './Opacity/Opacity';
8
9
  export * from './Icons';
9
10
  export * from './Logo';
10
11
  export { CheckBox } from './Checkbox/Checkbox';
11
- export { Button, Typography, Sidebar, Opacity, Modal, BottomSheet };
12
+ export { Button, Typography, Sidebar, Opacity, Modal, BottomSheet, Container };