Skip to content

Commit e25ddb3

Browse files
authored
✨ add package.json
✨ add package.json
2 parents 8bd7d47 + 27ca4a7 commit e25ddb3

File tree

8 files changed

+5582
-0
lines changed

8 files changed

+5582
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

index.d.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
declare module '@eliancodes/brutal-ui' {
2+
type ButtonProps = {
3+
href: string;
4+
target?: '_blank' | '_self';
5+
color?: string;
6+
}
7+
8+
export function Button(props: ButtonProps): any;
9+
}

index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default as Button } from './src/components/Button.astro';

0 commit comments

Comments
 (0)