@npm_leadtech/legal-lib-components 2.21.0 → 2.21.2

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.
@@ -2864,6 +2864,20 @@ html[data-theme='lawdistrict'] .document-status.--is-new {
2864
2864
  .whyLawDistrictItems__item:first-child {
2865
2865
  margin-top: 0; } }
2866
2866
 
2867
+ .messageInformation {
2868
+ display: flex;
2869
+ border-radius: 4px;
2870
+ background: var(--secondary-main-light-4);
2871
+ padding: 8px; }
2872
+ .messageInformation__icon {
2873
+ width: 24px;
2874
+ fill: var(--secondary-main-dark-1);
2875
+ margin-right: 8px; }
2876
+ .messageInformation__icon svg {
2877
+ display: block; }
2878
+ .messageInformation__text__time {
2879
+ font-weight: bold; }
2880
+
2867
2881
  .article {
2868
2882
  display: flex;
2869
2883
  flex-flow: row wrap;
@@ -0,0 +1,5 @@
1
+ import { type FC } from 'react';
2
+ import { type MessageInformationProps } from './MessageInformation.types';
3
+ import './MessageInformation.scss';
4
+ declare const MessageInformation: FC<MessageInformationProps>;
5
+ export default MessageInformation;
@@ -0,0 +1,4 @@
1
+ export interface MessageInformationProps {
2
+ text: string;
3
+ time?: string;
4
+ }
@@ -0,0 +1,2 @@
1
+ export { default as MessageInformation } from './MessageInformation';
2
+ export { type MessageInformationProps } from './MessageInformation.types';
@@ -39,3 +39,4 @@ export * from './TopBarMobile';
39
39
  export * from './WideInfoBar';
40
40
  export * from './TrustPilot';
41
41
  export * from './WhyLawDistrictItems';
42
+ export * from './MessageInformation';