mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-24 22:39:26 +01:00
8 lines
292 B
TypeScript
8 lines
292 B
TypeScript
import { BsPrefixProps, BsPrefixRefForwardingComponent } from './helpers';
|
|
export interface FormTextProps extends BsPrefixProps {
|
|
muted?: boolean;
|
|
}
|
|
declare type FormText = BsPrefixRefForwardingComponent<'small', FormTextProps>;
|
|
declare const FormText: FormText;
|
|
export default FormText;
|