wacomm 1.88.2 → 1.89.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.
@@ -0,0 +1,7 @@
1
+ type CoordinatesProps = {
2
+ lat: number;
3
+ lng: number;
4
+ className?: string;
5
+ };
6
+ declare function Coordinates({ lat, lng, className }: CoordinatesProps): import("react/jsx-runtime").JSX.Element;
7
+ export default Coordinates;
@@ -0,0 +1,6 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import { default as Coordinates } from './Coordinates';
3
+ declare const meta: Meta<typeof Coordinates>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof meta>;
6
+ export declare const Default: Story;