@progress/kendo-react-form
Version:
React Form is a small and fast package for form state management with zero dependencies. KendoReact Form package
48 lines (47 loc) • 1.54 kB
TypeScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
import { ResponsiveFormBreakPoint } from './interfaces/ResponsiveFormBreakPoint.js';
import * as React from 'react';
/**
* Represents the props of the KendoReact FormSeparator component.
*/
export interface FormSeparatorProps {
/**
* Defines the colspan for the separator element related to the parent Form component columns. Can be a number or an array of responsive breakpoints.
*/
colSpan?: number | ResponsiveFormBreakPoint[];
/**
* @hidden
*/
children?: any;
/**
* The styles that are applied to the form DOM element.
*/
style?: React.CSSProperties;
/**
* Sets a class for the form DOM element.
*/
className?: string;
}
/**
* Represent the `ref` of the FormSeparator component.
*/
export interface FormSeparatorHandle {
/**
* Represents the props of the FormSeparator component.
*/
props: FormSeparatorProps;
/**
* Represents the element of the FormSeparator component.
*/
element: HTMLSpanElement | null;
}
/**
* Represents the KendoReact FormSeparator component.
*/
export declare const FormSeparator: React.FunctionComponent<FormSeparatorProps>;