Matterway
    Preparing search index...

    Variable horizontalConst

    horizontal: HorizontalT = ...

    Horizontal layout component arranging content in a row.

    Either the content to display or the options object

    Content to display when first parameter is options object

    Basic usage with content

    horizontal([
    inputField({
    name: 'firstName',
    label: 'First name',
    defaultValue: 'Jane',
    }),
    inputField({
    name: 'lastName',
    label: 'Last name',
    defaultValue: 'Doe',
    }),
    ]);

    Usage with options and content

    horizontal(
    {
    gap: 8,
    align: 'center',
    justify: 'space-between',
    padding: 16,
    },
    [
    inputField({
    name: 'email',
    label: 'Email',
    type: 'email',
    }),
    inputField({
    name: 'phone',
    label: 'Phone',
    type: 'tel',
    }),
    ]
    );