Skip to content

CustomComponentProps

type CustomComponentProps<T, Type, ExtraProps> = TypeViewProps<T, Type> & ExtraProps

Props received by custom components. Define extra props using third generic parameter

T = unknown

Type = string | undefined

ExtraProps extends Record<string, any> = Record<string, any>

TypeViewProps