Repository URL to install this package:
|
Version:
2.1.12 ▾
|
import { ReactNode } from 'react'
import { StatusDetailsProps as StatusDetailsPlaceholderProps } from 'abstractions/B2B/UserManagement'
export interface ItemProps {
name?: string
identifier?: string | number
email?: string
team?: string
role?: string
status?: string
}
export interface StatusDetailsProps extends StatusDetailsPlaceholderProps {
item?: ItemProps
}