Skip to content

Commit

Permalink
fix usage
Browse files Browse the repository at this point in the history
  • Loading branch information
bevacqua committed Oct 26, 2017
1 parent 7dc3b9b commit 45a71d0
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion docs/src/views/kibana/kibana.js
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,6 @@ export default class extends Component {
const toasts = [(
<EuiToast
title="Check it out, here's a really long title that will wrap within a narrower browser"
color="info"
onClose={dismissToast}
>
<p>
Expand Down
1 change: 0 additions & 1 deletion docs/src/views/toast/info.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import {
export default () => (
<EuiToast
title="Icons should be rare"
color="info"
iconType="user"
onClose={() => window.alert('Dismiss toast')}
>
Expand Down
2 changes: 1 addition & 1 deletion src/components/button/button_empty/button_empty.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ EuiButtonEmpty.propTypes = {
className: PropTypes.string,
iconType: PropTypes.oneOf(ICON_TYPES),
iconSide: PropTypes.oneOf(ICON_SIDES),
type: PropTypes.oneOf(COLORS),
color: PropTypes.oneOf(COLORS),
size: PropTypes.oneOf(SIZES),
flush: PropTypes.oneOf(FLUSH_TYPES),
isDisabled: PropTypes.bool,
Expand Down
2 changes: 1 addition & 1 deletion src/components/button/button_icon/button_icon.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ EuiButtonIcon.propTypes = {
children: PropTypes.node,
className: PropTypes.string,
iconType: PropTypes.oneOf(ICON_TYPES),
type: PropTypes.oneOf(COLORS),
color: PropTypes.oneOf(COLORS),
isDisabled: PropTypes.bool,
};

Expand Down

0 comments on commit 45a71d0

Please sign in to comment.