GoScrobble/web/node_modules/reactstrap/lib/FormText.d.ts

14 lines
350 B
TypeScript

import * as React from 'react';
import { CSSModule } from './index';
export interface FormTextProps extends React.HTMLAttributes<HTMLElement> {
[key: string]: any;
inline?: boolean;
tag?: React.ElementType;
color?: string;
cssModule?: CSSModule;
}
declare class FormText extends React.Component<FormTextProps> {}
export default FormText;