randmarcomps 1.81.0 → 1.83.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.
@@ -10,6 +10,7 @@ import * as LabelPrimitive from '@radix-ui/react-label';
10
10
  import { MouseEventHandler } from 'react';
11
11
  import { OTPInput } from 'input-otp';
12
12
  import * as React_2 from 'react';
13
+ import { ReactNode } from 'react';
13
14
  import { RefAttributes } from 'react';
14
15
  import * as SeparatorPrimitive from '@radix-ui/react-separator';
15
16
  import { SeparatorProps } from '@radix-ui/react-separator';
@@ -37,17 +38,6 @@ export declare const badgeVariants: (props?: ({
37
38
  size?: "default" | "sm" | "lg" | null | undefined;
38
39
  } & ClassProp) | undefined) => string;
39
40
 
40
- export declare function BrandCard({ id, name, about, voiceName, voiceStyle, sceneName }: BrandCardProps): JSX.Element;
41
-
42
- declare interface BrandCardProps {
43
- id: string;
44
- name: string;
45
- about: string;
46
- voiceName?: string;
47
- voiceStyle?: string;
48
- sceneName?: string;
49
- }
50
-
51
41
  export declare const Button: React_2.ForwardRefExoticComponent<ButtonProps & React_2.RefAttributes<HTMLButtonElement>>;
52
42
 
53
43
  export declare interface ButtonProps extends React_2.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
@@ -207,6 +197,18 @@ export declare interface NavRoute {
207
197
  showInNav?: boolean;
208
198
  }
209
199
 
200
+ export declare function PartnerCard({ id, name, about, voiceName, voiceStyle, sceneName, action, }: PartnerCardProps): JSX.Element;
201
+
202
+ declare interface PartnerCardProps {
203
+ id: string;
204
+ name: string;
205
+ about: string;
206
+ voiceName?: string;
207
+ voiceStyle?: string;
208
+ sceneName?: string;
209
+ action?: ReactNode;
210
+ }
211
+
210
212
  declare interface Product {
211
213
  Title?: string;
212
214
  RandmarTitle?: string;