@dust-tt/sparkle 0.2.45 → 0.2.46-alpha

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,4 @@
1
+ import type { SVGProps } from "react";
2
+ import * as React from "react";
3
+ declare const SvgLogoHorizontalColorLayer1: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
4
+ export default SvgLogoHorizontalColorLayer1;
@@ -0,0 +1,4 @@
1
+ import type { SVGProps } from "react";
2
+ import * as React from "react";
3
+ declare const SvgLogoHorizontalColorLayer2: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
4
+ export default SvgLogoHorizontalColorLayer2;
@@ -0,0 +1,4 @@
1
+ import type { SVGProps } from "react";
2
+ import * as React from "react";
3
+ declare const SvgLogoSquareColorLayer1: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
4
+ export default SvgLogoSquareColorLayer1;
@@ -0,0 +1,4 @@
1
+ import type { SVGProps } from "react";
2
+ import * as React from "react";
3
+ declare const SvgLogoSquareColorLayer2: (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
4
+ export default SvgLogoSquareColorLayer2;
@@ -1,6 +1,10 @@
1
1
  export { default as LogoHorizontalColor } from "./LogoHorizontalColor";
2
+ export { default as LogoHorizontalColorLayer1 } from "./LogoHorizontalColorLayer1";
3
+ export { default as LogoHorizontalColorLayer2 } from "./LogoHorizontalColorLayer2";
2
4
  export { default as LogoHorizontalDark } from "./LogoHorizontalDark";
3
5
  export { default as LogoHorizontalWhite } from "./LogoHorizontalWhite";
4
6
  export { default as LogoSquareColor } from "./LogoSquareColor";
7
+ export { default as LogoSquareColorLayer1 } from "./LogoSquareColorLayer1";
8
+ export { default as LogoSquareColorLayer2 } from "./LogoSquareColorLayer2";
5
9
  export { default as LogoSquareDark } from "./LogoSquareDark";
6
10
  export { default as LogoSquareWhite } from "./LogoSquareWhite";
@@ -0,0 +1,8 @@
1
+ import React from "react";
2
+ import { Hover3D } from "../index_with_tw_base";
3
+ declare const meta: {
4
+ title: string;
5
+ component: typeof Hover3D;
6
+ };
7
+ export default meta;
8
+ export declare const Hover3DExample: () => React.JSX.Element;