@npm_leadtech/legal-lib-components 2.12.5 → 2.12.6

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.
@@ -1761,7 +1761,8 @@ html[data-theme='lawdistrict'] .document-status.--is-new {
1761
1761
  line-height: 24px;
1762
1762
  letter-spacing: -0.3px;
1763
1763
  text-align: center;
1764
- width: 75%; }
1764
+ width: 75%;
1765
+ text-decoration: none; }
1765
1766
  .expert-card__description {
1766
1767
  font-family: Inter;
1767
1768
  font-size: 16px;
@@ -2,5 +2,6 @@
2
2
  export interface ExpertCardProps {
3
3
  title: string;
4
4
  description: string;
5
+ url?: string | null;
5
6
  image: React.ReactNode;
6
7
  }
@@ -4,3 +4,4 @@ declare const meta: Meta<typeof ExpertCard>;
4
4
  export default meta;
5
5
  type Story = StoryObj<typeof ExpertCard>;
6
6
  export declare const Default: Story;
7
+ export declare const NoUrl: Story;