Skip to content

Commit

Permalink
✨ add package.json
Browse files Browse the repository at this point in the history
✨ add package.json
  • Loading branch information
ElianCodes committed Mar 17, 2023
2 parents 8bd7d47 + 27ca4a7 commit e25ddb3
Show file tree
Hide file tree
Showing 8 changed files with 5,582 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
9 changes: 9 additions & 0 deletions index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
declare module '@eliancodes/brutal-ui' {
type ButtonProps = {
href: string;
target?: '_blank' | '_self';
color?: string;
}

export function Button(props: ButtonProps): any;
}
1 change: 1 addition & 0 deletions index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default as Button } from './src/components/Button.astro';

0 comments on commit e25ddb3

Please sign in to comment.