@npm_leadtech/legal-lib-components 2.11.15 → 2.11.16

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.
@@ -0,0 +1,3 @@
1
+ import { type FC } from 'react';
2
+ import { type LogoProps } from './LogoProps.types';
3
+ export declare const Logo: FC<LogoProps>;
@@ -0,0 +1,7 @@
1
+ export interface LogoProps {
2
+ siteName: string;
3
+ className?: string;
4
+ width?: string;
5
+ height?: string;
6
+ type?: string;
7
+ }
@@ -0,0 +1,12 @@
1
+ import { type Meta, type StoryObj } from '@storybook/react';
2
+ import { Logo } from '../Logo';
3
+ declare const meta: Meta<typeof Logo>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof Logo>;
6
+ export declare const Default: Story;
7
+ export declare const Districtlaws: Story;
8
+ export declare const Lawdistrictpro: Story;
9
+ export declare const Lawdistricts: Story;
10
+ export declare const Thedistrictlaw: Story;
11
+ export declare const Uslawdistrict: Story;
12
+ export declare const Uslawdistricts: Story;
@@ -0,0 +1,2 @@
1
+ export { Logo } from './Logo';
2
+ export { type LogoProps } from './LogoProps.types';
@@ -17,6 +17,7 @@ export * from './FormFaq';
17
17
  export * from './GoogleButton';
18
18
  export * from './IconImage';
19
19
  export * from './InfoBox';
20
+ export * from './Logo';
20
21
  export * from './LogoText';
21
22
  export * from './MenuItems';
22
23
  export * from './Message';