Repository URL to install this package:
| 
      
        
        
        Version: 
        
         
          
          0.14.1  ▾
        
         | 
| 
    
    ui-component-library
  
    /
        
    src
  
        /
        
    components
  
        /
        
    abstractions
  
        /
        
    B2B
  
        /
        
    UserManagement
  
        /
        
    UserStatus
  
        /
        
    StatusDetailCard
  
        /
        typings.ts
   | 
|---|
import { ReactNode } from 'react'
import { CardState } from 'organisms/ExpandableCard'
export interface StatusDetailCardRenderProp extends Function {
  (props: StatusDetailCardProps, state?: CardState): ReactNode
}
export interface StatusDetailCardProps {
  className?: string
  state?: CardState
  // render props
  renderDetail?: StatusDetailCardRenderProp
  renderForm?: StatusDetailCardRenderProp
  renderButton?: StatusDetailCardRenderProp
  renderWrapper?: StatusDetailCardRenderProp
}