@npm_leadtech/legal-lib-components 2.9.2 → 2.10.0

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,5 +1,6 @@
1
1
  import { type FC } from 'react';
2
2
  import { type AddButtonProps } from './AddButtonProps.types';
3
+ import '../../../globalStyles/themes.scss';
3
4
  import './AddButton.scss';
4
5
  declare const AddButton: FC<AddButtonProps>;
5
6
  export default AddButton;
@@ -2,6 +2,7 @@ import React, { type FC } from 'react';
2
2
  import './WideInfoBar.scss';
3
3
  interface WideInfoBarProps {
4
4
  children?: React.ReactElement<any>;
5
+ color?: 'green';
5
6
  }
6
7
  declare const WideInfoBar: FC<WideInfoBarProps>;
7
8
  export default WideInfoBar;
@@ -4,3 +4,4 @@ declare const meta: Meta<typeof WideInfoBar>;
4
4
  export default meta;
5
5
  type Story = StoryObj<typeof WideInfoBar>;
6
6
  export declare const Default: Story;
7
+ export declare const Green: Story;