UNPKG

react-bootstrap-v5

Version:

Bootstrap 4 components built with React

11 lines (10 loc) 441 B
import React from 'react'; import { BsPrefixAndClassNameOnlyProps, BsPrefixRefForwardingComponent } from './helpers'; export interface FormFileLabelProps extends BsPrefixAndClassNameOnlyProps { htmlFor?: string; label?: React.ReactNode; button?: React.ReactNode; } declare type FormFileLabel = BsPrefixRefForwardingComponent<'label', FormFileLabelProps>; declare const FormFileLabel: FormFileLabel; export default FormFileLabel;