@apolitical/component-library 2.0.4-beta.0 → 2.0.4

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,14 @@
1
+ /// <reference types="react" />
2
+ import { ResponsiveImageType } from '../../general';
3
+ export type HighlightSectionProps = {
4
+ /** The content to display */
5
+ content: string | React.ReactNode;
6
+ /** Additional className */
7
+ className?: string;
8
+ /** How to align the image, left or right. Defaults to left */
9
+ alignImage?: 'left' | 'right';
10
+ /** The image to display */
11
+ image?: ResponsiveImageType;
12
+ };
13
+ declare const _default: import("react").MemoExoticComponent<({ alignImage, className, content, image, }: HighlightSectionProps) => import("react/jsx-runtime").JSX.Element>;
14
+ export default _default;
@@ -0,0 +1 @@
1
+ export { default as HighlightSection } from './highlight-section';
@@ -1,2 +1,3 @@
1
1
  export * from './banner-section';
2
+ export * from './highlight-section';
2
3
  export * from './marketing-block';