@nextelco/common-ui 1.6.78 → 1.6.79

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,14 @@
1
+ import React from 'react';
2
+ import { PropsWithChildren } from 'react';
3
+ import './Card7.scss';
4
+ type Props = PropsWithChildren<{
5
+ text1: string;
6
+ textFontColor: string;
7
+ backgroundColor: string;
8
+ image: string;
9
+ icon: string;
10
+ isVideo: boolean;
11
+ onClick: () => void;
12
+ }>;
13
+ declare const Card7: ({ text1, textFontColor, backgroundColor, icon, image, isVideo, onClick }: Props) => React.JSX.Element;
14
+ export default Card7;
@@ -0,0 +1,6 @@
1
+ import type { Meta, StoryObj } from '@storybook/react';
2
+ import Card7 from './Card7';
3
+ declare const meta: Meta<typeof Card7>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof meta>;
6
+ export declare const Default: Story;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nextelco/common-ui",
3
- "version": "1.6.78",
3
+ "version": "1.6.79",
4
4
  "description": "",
5
5
  "main": "dist/bundle.js",
6
6
  "types": "dist/types/index.d.ts",