Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | /**
* Footer component display Two elements
* One left side, with tooltip and the right side it diplays link and img
*
* @memberOf VISIONS
* @name Footer
* @tag component
* @api public
* @props
* Footer.propTypes = {
* tooltip: PropTypes.shape({
* link: PropTypes.string,
* linkLabel: PropTypes.string,
* label: PropTypes.string,
* }),
* label: PropTypes.string,
* logo: PropTypes.string,
* link: PropTypes.string,
* linkLabel: PropTypes.string,
* height: PropTypes.number,
* classes: PropTypes.object,
* };
*
*/
export { default } from './Footer';
|