droplinked-chatbot-next 1.0.2 → 1.0.3

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,2 @@
1
+ import { SVGProps } from "react";
2
+ export declare const SendMd: ({ color, ...props }: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { SVGProps } from "react";
2
+ export declare const LetterMd: ({ color, ...props }: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,9 @@
1
+ import React from 'react';
2
+ import { type LinkProps as ChakraLinkProps } from '@chakra-ui/react';
3
+ export interface SmartLinkProps extends Omit<ChakraLinkProps, 'href' | 'as'> {
4
+ href: string;
5
+ isExternal?: boolean;
6
+ routerLinkComponent?: React.ComponentType<any>;
7
+ routerToProp?: 'to' | 'href';
8
+ }
9
+ export default function SmartLink({ href, isExternal, routerLinkComponent, routerToProp, children, ...rest }: SmartLinkProps): import("react/jsx-runtime").JSX.Element;
@@ -1,8 +1,6 @@
1
1
  import React from "react";
2
2
  interface TypingIndicatorProps {
3
3
  isVisible: boolean;
4
- size?: "normal" | "small";
5
- state?: "typing" | "completed";
6
4
  }
7
5
  declare const TypingIndicator: React.NamedExoticComponent<TypingIndicatorProps>;
8
6
  export default TypingIndicator;