@ssa-ui-kit/core 1.0.3 → 1.0.5

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,2 @@
1
+ import { ImageItemProps } from './types';
2
+ export declare const ImageItem: ({ children, image, avatarSize, link, openLinkInNewTab, className, }: ImageItemProps) => import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;
@@ -0,0 +1 @@
1
+ export * from './ImageItem';
@@ -0,0 +1,8 @@
1
+ /// <reference types="react" />
2
+ export type ImageItemProps = React.PropsWithChildren<{
3
+ image: string;
4
+ avatarSize?: number;
5
+ link?: string;
6
+ className?: string;
7
+ openLinkInNewTab?: boolean;
8
+ }>;
@@ -101,3 +101,4 @@ export * from './CollapsibleNavBar';
101
101
  export * from './Filters';
102
102
  export * from './TableFilters';
103
103
  export * from './Typeahead';
104
+ export * from './ImageItem';