@mindly/ui-components 8.5.4 → 8.5.5
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.
- package/dist/cjs/index.js +2 -2
- package/dist/cjs/lib2/shared/ui/SpecialistProfileViewCounter/SpecialistProfileViewCounter.d.ts +10 -0
- package/dist/cjs/lib2/shared/ui/SpecialistProfileViewCounter/SpecialistProfileViewCounter.stories.d.ts +6 -0
- package/dist/cjs/lib2/shared/ui/SpecialistProfileViewCounter/index.d.ts +1 -0
- package/dist/cjs/lib2/shared/ui/index.d.ts +1 -0
- package/dist/esm/index.js +6 -6
- package/dist/esm/lib2/shared/ui/SpecialistProfileViewCounter/SpecialistProfileViewCounter.d.ts +10 -0
- package/dist/esm/lib2/shared/ui/SpecialistProfileViewCounter/SpecialistProfileViewCounter.stories.d.ts +6 -0
- package/dist/esm/lib2/shared/ui/SpecialistProfileViewCounter/index.d.ts +1 -0
- package/dist/esm/lib2/shared/ui/index.d.ts +1 -0
- package/dist/index.d.ts +10 -1
- package/package.json +1 -1
package/dist/cjs/lib2/shared/ui/SpecialistProfileViewCounter/SpecialistProfileViewCounter.d.ts
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React, { SVGAttributes, FC } from 'react';
|
|
2
|
+
type SpecialistProfileViewCounterProps = {
|
|
3
|
+
countText: string;
|
|
4
|
+
className?: string;
|
|
5
|
+
icon?: FC<SVGAttributes<SVGElement>>;
|
|
6
|
+
iconSize?: number;
|
|
7
|
+
onClick?: () => void;
|
|
8
|
+
};
|
|
9
|
+
declare const SpecialistProfileViewCounter: React.FC<SpecialistProfileViewCounterProps>;
|
|
10
|
+
export default SpecialistProfileViewCounter;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import SpecialistProfileViewCounter from './SpecialistProfileViewCounter';
|
|
3
|
+
declare const meta: Meta<typeof SpecialistProfileViewCounter>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof SpecialistProfileViewCounter>;
|
|
6
|
+
export declare const Default: Story;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as SpecialistProfileViewCounter } from './SpecialistProfileViewCounter';
|