How to use the @instructure/ui-themeable/lib/components/ApplyTheme.PropTypes function in @instructure/ui-themeable

To help you get started, we’ve selected a few @instructure/ui-themeable 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 / ApplyTheme / index.js View on Github external
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */
import React, { Component } from 'react'

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

import UIApplyTheme from '@instructure/ui-themeable/lib/components/ApplyTheme'

@deprecated('5.0.0', null, changedPackageWarning(
  'ui-core',
  'ui-themeable'
))
class ApplyTheme extends Component {
  static propTypes = {
    ...UIApplyTheme.PropTypes
  }

  render () {
    return 
  }
}

export default ApplyTheme