@20minutes/tyr 0.1.63 → 0.1.64

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,7 +1,7 @@
1
1
  import * as React from 'react';
2
- import { CardMediumProps, FlexProps, LinkProps } from '@20minutes/hela';
2
+ import { CardType, FlexProps, LinkProps } from '@20minutes/hela';
3
3
  export interface LiveBlockProps extends FlexProps {
4
- articles: CardMediumProps[];
4
+ articles: CardType[];
5
5
  seeMoreLink: LinkProps;
6
6
  }
7
7
  export declare const LiveBlock: React.FC<LiveBlockProps>;
@@ -1,7 +1,7 @@
1
1
  import React from 'react';
2
- import { CardMediumProps, CardSmallProps, LayoutType } from '@20minutes/hela';
2
+ import { CardType, LayoutType } from '@20minutes/hela';
3
3
  export interface TagPageArticlesListProps {
4
- articles: CardSmallProps[] | CardMediumProps[];
4
+ articles: CardType[];
5
5
  layout?: LayoutType;
6
6
  }
7
7
  export declare const TagPageArticlesList: React.FC<TagPageArticlesListProps>;