📄 Feedback.d.ts
/home/palash/git/site/node_modules/react-bootstrap/cjs/Feedback.d.ts
Language: ts • Lines: 10
import * as React from 'react';
import { AsProp, BsPrefixRefForwardingComponent } from './helpers';
export 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;