Nevar pievienot vairāk kā 25 tēmas
Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
123456789101112131415 |
- import * as React from 'react';
-
- import { BsPrefixComponent } from './helpers';
-
- export interface FormCheckLabelProps {
- htmlFor?: string;
- innerRef?: React.LegacyRef<this>;
- }
-
- declare class FormCheckLabel extends BsPrefixComponent<
- 'label',
- FormCheckLabelProps
- > {}
-
- export default FormCheckLabel;
|