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.
10 lines
401 B
10 lines
401 B
import * as React from 'react';
|
|
import { FormGroupProps } from './FormGroup';
|
|
import { BsPrefixProps, BsPrefixRefForwardingComponent } from './helpers';
|
|
export interface FloatingLabelProps extends FormGroupProps, BsPrefixProps {
|
|
controlId?: string;
|
|
label: React.ReactNode;
|
|
}
|
|
declare const FloatingLabel: BsPrefixRefForwardingComponent<'div', FloatingLabelProps>;
|
|
export default FloatingLabel;
|