ymy-components 0.0.23 → 0.0.24

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.
@@ -7,5 +7,5 @@ type AnimatedTextProps = {
7
7
  htmlElement?: keyof JSX.IntrinsicElements;
8
8
  fadeIn?: boolean;
9
9
  };
10
- export default function AnimatedText(animatedTextProps: AnimatedTextProps): import("react/jsx-runtime").JSX.Element;
10
+ export default function AnimatedText({ animate, content, textStyles, htmlElement, fadeIn, }: AnimatedTextProps): import("react/jsx-runtime").JSX.Element;
11
11
  export {};
@@ -848,12 +848,12 @@ export declare const StyledCircleButton: import('styled-components/dist/types').
848
848
  matrix3d?: readonly [number, number, number, number, number, number, number, number, number, number, number, number, number, number, number, number] | undefined;
849
849
  } | undefined;
850
850
  title?: string | undefined | undefined;
851
+ content?: string | undefined | undefined;
851
852
  onChange?: import('react').FormEventHandler<HTMLDivElement> | undefined;
852
853
  onPause?: import('react').ReactEventHandler<HTMLDivElement> | undefined;
854
+ children?: import('react').ReactNode;
853
855
  hidden?: boolean | undefined | undefined;
854
856
  color?: string | undefined | undefined;
855
- content?: string | undefined | undefined;
856
- children?: import('react').ReactNode;
857
857
  suppressHydrationWarning?: boolean | undefined | undefined;
858
858
  className?: string | undefined | undefined;
859
859
  id?: string | undefined | undefined;