Skip to content

Commit

Permalink
dist
Browse files Browse the repository at this point in the history
  • Loading branch information
jivey committed Mar 4, 2024
1 parent 7c68b88 commit 57d89d4
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
7 changes: 7 additions & 0 deletions dist/components/ButtonBar.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import React from "react";
import { TabsProps } from "./Tabs";
declare type ButtonBarProps = Pick<TabsProps, "size"> & {
children?: React.ReactNode;
};
export declare const ButtonBar: ({ size, children, ...restProps }: ButtonBarProps) => JSX.Element;
export {};
1 change: 1 addition & 0 deletions dist/components/ButtonBar.spec.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export {};
1 change: 1 addition & 0 deletions dist/components/ButtonBar.stories.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export declare const Examples: () => JSX.Element;

0 comments on commit 57d89d4

Please sign in to comment.