Skip to content

Commit

Permalink
Merge pull request #21 from philippebeck/dev
Browse files Browse the repository at this point in the history
Release 0.5.2
  • Loading branch information
philippebeck authored Dec 6, 2024
2 parents 3433b88 + fb165f6 commit 5b4d63a
Show file tree
Hide file tree
Showing 21 changed files with 249 additions and 406 deletions.
9 changes: 8 additions & 1 deletion dist/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,23 +124,30 @@ declare interface CollapseProps {
* @param {FooterProps} props
* The Properties of the Footer
*
* @param {string} props.id
* The Id of the Footer
*
* @param {Array<ButtonProps>} props.links
* The Links of the Footer
*
* @returns {React.ReactElement<HTMLElement>}
* The rendered Footer
*/
export declare const Footer: ({ links }: FooterProps) => React.ReactElement<HTMLElement>;
export declare const Footer: ({ id, links }: FooterProps) => React.ReactElement<HTMLElement>;

/**
* ! FOOTER PROPS INTERFACE
* @interface FooterProps
* @description The Properties of the Footer
*
* @property {string} id
* The Id of the Footer
*
* @property {Array<ButtonProps>} links
* The Links Array of the Footer
*/
declare interface FooterProps {
id: string;
links: Array<ButtonProps>;
}

Expand Down
127 changes: 67 additions & 60 deletions dist/index.es.js

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

2 changes: 1 addition & 1 deletion dist/index.es.js.map

Large diffs are not rendered by default.

Loading

0 comments on commit 5b4d63a

Please sign in to comment.