jobiqo-cl
Version:
[](https://circleci.com/gh/jobiqo/jobiqo-cl)
18 lines (17 loc) • 394 B
TypeScript
/**
* @file index.tsx
*
* @fileoverview Shows form elements inline.
*/
import React from 'react';
export interface FormItemsInlineProps {
/**
* Elements to include inside.
*/
inputs: React.ReactNode[];
/**
* The submit button.
*/
button: React.ReactNode;
}
export declare const FormItemsInline: ({ inputs, button }: FormItemsInlineProps) => JSX.Element;