@clayui/form
Version:
ClayForm component
30 lines (29 loc) • 1.3 kB
TypeScript
/**
* SPDX-FileCopyrightText: © 2019 Liferay, Inc. <https://liferay.com>
* SPDX-License-Identifier: BSD-3-Clause
*/
import React from 'react';
interface IGroup extends React.HTMLAttributes<HTMLDivElement> {
/**
* Indicates Form Group should be a small variant.
*/
small?: boolean;
}
interface IFeedbackIndicatorProps extends React.HTMLAttributes<HTMLSpanElement> {
/**
* Path to the location of the spritemap resource.
*/
spritemap?: string;
/**
* Name of icon symbol
*/
symbol: string;
}
declare const _default: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLFormElement> & React.RefAttributes<HTMLFormElement>> & {
FeedbackGroup: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
FeedbackIndicator: React.ForwardRefExoticComponent<IFeedbackIndicatorProps & React.RefAttributes<HTMLDivElement>>;
FeedbackItem: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
Group: React.ForwardRefExoticComponent<IGroup & React.RefAttributes<HTMLDivElement>>;
Text: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
};
export default _default;