How to use the react-native-modal.FeaturedIcon function in react-native-modal

To help you get started, we’ve selected a few react-native-modal 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 EdgeApp / edge-react-gui / src / modules / UI / components / PasswordReminderModal / components / Modal.ui.js View on Github external
export type ContainerState = {}

Modal.Container = class Container extends Component {
  render () {
    return 
  }
}

// FEATURED_ICON /////////////////////////////////////////////////////////////////////////////
export type FeaturedIconProps = {
  children: Node,
  style?: Object
}
export type FeaturedIconState = {}

Modal.FeaturedIcon = class FeaturedIcon extends Component {
  render () {
    return (
      
    )
  }
}

// HEADER /////////////////////////////////////////////////////////////////////////////
export type HeaderProps = {
  children: Node,
  style?: Object
}
export type HeaderState = {}