mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-25 14:59:16 +01:00
15 lines
265 B
TypeScript
15 lines
265 B
TypeScript
import * as React from 'react';
|
|
|
|
import { BsPrefixComponent } from './helpers';
|
|
|
|
export interface FormFileLabelProps {
|
|
htmlFor?: string;
|
|
}
|
|
|
|
declare class FormFileLabel extends BsPrefixComponent<
|
|
'label',
|
|
FormFileLabelProps
|
|
> {}
|
|
|
|
export default FormFileLabel;
|