@npm_leadtech/legal-lib-components 2.38.1 → 2.39.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.
@@ -3001,6 +3001,8 @@ html[data-theme='lawdistrict'] .document-status.--is-new {
3001
3001
  @media (min-width: 960px) {
3002
3002
  .message-information {
3003
3003
  justify-content: flex-start; } }
3004
+ .message-information.text-center {
3005
+ justify-content: center; }
3004
3006
  .message-information__icon {
3005
3007
  width: 24px;
3006
3008
  fill: var(--secondary-main-dark-1);
@@ -3,4 +3,5 @@ export interface MessageInformationProps {
3
3
  noImg: boolean;
4
4
  text: string | React.ReactNode;
5
5
  time?: string;
6
+ centered: boolean;
6
7
  }
@@ -3,4 +3,5 @@ export interface CountDownMessageProps {
3
3
  noImg?: boolean;
4
4
  text: string | React.ReactNode;
5
5
  time?: string;
6
+ centered?: boolean;
6
7
  }