-
Notifications
You must be signed in to change notification settings - Fork 598
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Export prop types alongside components
- Loading branch information
Showing
1 changed file
with
8 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,8 @@ | ||
import Button from './Button' | ||
export default Button | ||
export {default as ButtonDanger} from './ButtonDanger' | ||
export {default as ButtonGroup} from './ButtonGroup' | ||
export {default as ButtonOutline} from './ButtonOutline' | ||
export {default as ButtonPrimary} from './ButtonPrimary' | ||
export {default as ButtonInvisible} from './ButtonInvisible' | ||
export {default as ButtonTableList} from './ButtonTableList' | ||
export {default as ButtonClose} from './ButtonClose' | ||
export {default, ButtonProps} from './Button' | ||
export {default as ButtonDanger, ButtonDangerProps} from './ButtonDanger' | ||
export {default as ButtonGroup, ButtonGroupProps} from './ButtonGroup' | ||
export {default as ButtonOutline, ButtonOutlineProps} from './ButtonOutline' | ||
export {default as ButtonPrimary, ButtonPrimaryProps} from './ButtonPrimary' | ||
export {default as ButtonInvisible, ButtonInvisibleProps} from './ButtonInvisible' | ||
export {default as ButtonTableList, ButtonTableListProps} from './ButtonTableList' | ||
export {default as ButtonClose, ButtonCloseProps} from './ButtonClose' |