Skip to content

Commit

Permalink
move spreads
Browse files Browse the repository at this point in the history
  • Loading branch information
jbadan committed Jan 16, 2019
1 parent ceb47c4 commit 74e060b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Alert/Alert.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,18 +38,18 @@ export class Alert extends Component {
{...props}>
{dismissable && (
<button
{...buttonProps}
aria-controls='j2ALl423'
aria-label='Close'
className='fd-alert__close'
onClick={() => this.closeAlertHandler()}
{...buttonProps} />
onClick={() => this.closeAlertHandler()} />
)}
{children}
{link && (
<a
{...linkProps}
className='fd-link'
href={link}
{...linkProps}>
href={link}>
{linkText}{' '}
<span className='sap-icon--arrow-right sap-icon--s' />
</a>
Expand Down

0 comments on commit 74e060b

Please sign in to comment.