@design-llm/motion 1.0.0 → 1.0.2
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.
- package/README.md +85 -12
- package/dist/index.cjs +4510 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +18 -0
- package/dist/index.js +19032 -901
- package/dist/index.js.map +1 -1
- package/dist/motion.css +1 -0
- package/package.json +23 -6
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { ComponentType } from 'react';
|
|
2
|
+
|
|
3
|
+
export function cn(...inputs: (string | undefined | null | false)[]): string;
|
|
4
|
+
|
|
5
|
+
export const BlurText: ComponentType<any>;
|
|
6
|
+
export const CircularText: ComponentType<any>;
|
|
7
|
+
export const ScrambledText: ComponentType<any>;
|
|
8
|
+
export const FlowingDashedBox: ComponentType<any>;
|
|
9
|
+
export const FallingPattern: ComponentType<any>;
|
|
10
|
+
export const ShinyText: ComponentType<any>;
|
|
11
|
+
export const BlackHole: ComponentType<any>;
|
|
12
|
+
export const MetalButton: ComponentType<any>;
|
|
13
|
+
export const PixelCard: ComponentType<any>;
|
|
14
|
+
export const Gallery3D: ComponentType<any>;
|
|
15
|
+
export const Tunnel3D: ComponentType<any>;
|
|
16
|
+
export const ElectricBorder: ComponentType<any>;
|
|
17
|
+
export const ScrollCards3D: ComponentType<any>;
|
|
18
|
+
export const LiquidMetalButton: ComponentType<any>;
|