mirror of
https://github.com/idanoo/GoScrobble
synced 2025-07-05 15:42:18 +00:00
9 lines
401 B
TypeScript
9 lines
401 B
TypeScript
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;
|