Skip to content

Commit

Permalink
Fixes liferay#1829 - Add docs to interface
Browse files Browse the repository at this point in the history
  • Loading branch information
matuzalemsteles committed May 10, 2019
1 parent c37c09f commit 83977f3
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions packages/clay-modal/src/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,22 @@
import React, {FunctionComponent} from 'react';

export interface FooterProps {
/**
* Sets the elements that are positioned `first following
* the LTR direction on the footer.
*/
first?: React.ReactElement;

/**
* Sets the elements that are positioned `last` following
* the LTR direction on the footer.
*/
last?: React.ReactElement;

/**
* Sets the elements that are positioned in the middle
* of the footer.
*/
middle?: React.ReactElement;
}

Expand Down

0 comments on commit 83977f3

Please sign in to comment.