@npm_leadtech/legal-lib-components 2.9.2 → 2.9.3

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.
@@ -2473,7 +2473,10 @@
2473
2473
  .wide-info-bar {
2474
2474
  background-color: #F8F9FA;
2475
2475
  font-family: "Inter", sans-serif;
2476
- color: #02374A; }
2476
+ color: #3D4042; }
2477
+ .wide-info-bar.green {
2478
+ background-color: #EFF7F5;
2479
+ color: #02374A; }
2477
2480
  .wide-info-bar__wrapper {
2478
2481
  display: flex;
2479
2482
  flex-flow: column nowrap;
@@ -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;