How to use the @instructure/ui-overlays/lib/components/Modal.ModalFooter.PropTypes function in @instructure/ui-overlays

To help you get started, we’ve selected a few @instructure/ui-overlays examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github instructure / instructure-ui / packages / ui-core / src / components / Modal / ModalFooter / index.js View on Github external
* SOFTWARE.
 */

import React, { Component } from 'react'

import deprecated, { changedPackageWarning } from '@instructure/ui-utils/lib/react/deprecated'

import { ModalFooter as UIModalFooter } from '@instructure/ui-overlays/lib/components/Modal'

@deprecated('5.0.0', null, changedPackageWarning(
  'ui-core',
  'ui-overlays'
))
class ModalFooter extends Component {
  static propTypes = {
    ...UIModalFooter.PropTypes
  }

  render () {
    return 
  }
}

export default ModalFooter