Skip to content

Commit

Permalink
fix exports
Browse files Browse the repository at this point in the history
  • Loading branch information
Dosant committed Nov 8, 2021
1 parent 605da9f commit 110bb87
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion packages/kbn-react-field/src/field_button/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@
* Side Public License, v 1.
*/

export { FieldButton, FieldButtonProps, ButtonSize } from './field_button';
export { FieldButton } from './field_button';
export type { FieldButtonProps, ButtonSize } from './field_button';
3 changes: 2 additions & 1 deletion packages/kbn-react-field/src/field_icon/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@
* Side Public License, v 1.
*/

export { FieldIcon, FieldIconProps } from './field_icon';
export { FieldIcon } from './field_icon';
export type { FieldIconProps } from './field_icon';
6 changes: 4 additions & 2 deletions packages/kbn-react-field/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,7 @@
* Side Public License, v 1.
*/

export { FieldIconProps, FieldIcon } from './field_icon';
export { FieldButtonProps, ButtonSize, FieldButton } from './field_button';
export { FieldIcon } from './field_icon';
export type { FieldIconProps } from './field_icon';
export { FieldButton } from './field_button';
export type { FieldButtonProps, ButtonSize } from './field_button';

0 comments on commit 110bb87

Please sign in to comment.