livevegas-ui-kit 1.0.120 → 1.0.122

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
+ interface ICardSymbol {
2
+ color: string;
3
+ value: number | string;
4
+ suit: string;
5
+ }
6
+ export declare const CardSymbol: ({ color, value, suit }: ICardSymbol) => import("react/jsx-runtime").JSX.Element;
7
+ export {};
@@ -0,0 +1,5 @@
1
+ interface RenderContentProps {
2
+ textKey: string;
3
+ }
4
+ export declare const RenderContent: ({ textKey }: RenderContentProps) => import("react/jsx-runtime").JSX.Element;
5
+ export {};
@@ -0,0 +1,10 @@
1
+ interface IText {
2
+ [key: string]: string | Record<string, string>;
3
+ }
4
+ interface TextBlockProps {
5
+ textKey: string;
6
+ value: IText;
7
+ index: number;
8
+ }
9
+ export declare const TextBlock: ({ textKey, value, index }: TextBlockProps) => import("react/jsx-runtime").JSX.Element;
10
+ export {};