Skip to content

Commit

Permalink
feat(build): build
Browse files Browse the repository at this point in the history
  • Loading branch information
Nekzus committed Jan 26, 2024
1 parent 33cf523 commit a04dc3d
Show file tree
Hide file tree
Showing 8 changed files with 262 additions and 0 deletions.
9 changes: 9 additions & 0 deletions build/components/animation/LetterHologram.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import React, { CSSProperties, ReactNode } from "react";
interface RandomBgProps {
children: ReactNode;
className?: string;
colorClassName?: "blueColor" | "greenColor" | "pinkColor" | "orangeColor" | "darkColor" | "lightColor" | "defaultColor";
style?: CSSProperties;
}
declare const HoloBg: React.FC<RandomBgProps>;
export default HoloBg;
1 change: 1 addition & 0 deletions build/components/animation/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from "./LetterHologram";
1 change: 1 addition & 0 deletions build/components/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default as HoloBg } from "./animation";
1 change: 1 addition & 0 deletions build/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from "./components";
123 changes: 123 additions & 0 deletions build/index.es.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions build/index.es.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit a04dc3d

Please sign in to comment.