interface TitleProps {
    hasError?: boolean;
    required?: boolean;
    hasValue?: boolean;
    leftSlot?: ReactNode;
    typeSelectorSlot?: ReactNode;
    rightSlot?: ReactNode;
    childrenWrap?: boolean;
}

Hierarchy

  • HTMLAttributes<HTMLDivElement>
    • TitleProps

Properties

hasError?: boolean
required?: boolean
hasValue?: boolean
leftSlot?: ReactNode
typeSelectorSlot?: ReactNode
rightSlot?: ReactNode
childrenWrap?: boolean