Hex Core JS
    Preparing search index...

    Type Alias ListProps

    ListProps: {
        id?: string;
        ordered?: boolean;
        start?: number;
        type?: "1" | "a" | "A" | "i" | "I";
    } & Partial<ClassNameProps & StyleProps & ChildrenProps>

    Type Declaration

    • Optionalid?: string

      HTML id of the element.

    • Optionalordered?: boolean

      Decides if the items are ordered or not (decides between <ol> or <ul> element).

    • Optionalstart?: number

      Where to start counting from when the list is ordered.

    • Optionaltype?: "1" | "a" | "A" | "i" | "I"

      Determines the symbols used in the list. Only used when list is ordered. Use css to change style of unordered lists.