@foris/avocado-suite 0.42.0 → 1.0.1

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,9 +1,9 @@
1
1
  import { FC, ReactNode } from 'react';
2
2
  import { BannerItemProps } from './BannerItem';
3
- interface BannerItemCustom {
3
+ export interface BannerItemCustom {
4
4
  content: ReactNode;
5
5
  }
6
- interface BannerProps {
6
+ export interface BannerProps {
7
7
  className?: string;
8
8
  items?: BannerItemProps[] | BannerItemCustom[];
9
9
  }
@@ -1,5 +1,5 @@
1
1
  import { FC, ReactNode } from 'react';
2
- interface BannerAccentTitleProps {
2
+ export interface BannerAccentTitleProps {
3
3
  children: ReactNode;
4
4
  }
5
5
  declare const BannerAccentTitle: FC<BannerAccentTitleProps>;
@@ -1,5 +1,5 @@
1
1
  import { FC, ReactNode } from 'react';
2
- interface BannerTitleProps {
2
+ export interface BannerTitleProps {
3
3
  children: ReactNode;
4
4
  }
5
5
  declare const BannerTitle: FC<BannerTitleProps>;
@@ -0,0 +1,7 @@
1
+ declare const Banner: {
2
+ Wrapper: import("react").FC<import("./Banner").BannerProps>;
3
+ Item: import("react").FC<import("./BannerItem").BannerItemProps>;
4
+ Title: import("react").FC<import("./BannerTitle").BannerTitleProps>;
5
+ AccentTitle: import("react").FC<import("./BannerAccentTitle").BannerAccentTitleProps>;
6
+ };
7
+ export default Banner;