You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
414 B
11 lines
414 B
import * as React from 'react';
|
|
import { AsProp, BsPrefixRefForwardingComponent } from './helpers';
|
|
export declare type FeedbackType = 'valid' | 'invalid';
|
|
export interface FeedbackProps extends AsProp, React.HTMLAttributes<HTMLElement> {
|
|
bsPrefix?: never;
|
|
type?: FeedbackType;
|
|
tooltip?: boolean;
|
|
}
|
|
declare const Feedback: BsPrefixRefForwardingComponent<'div', FeedbackProps>;
|
|
export default Feedback;
|