@harvest-profit/npk
Version:
NPK UI Design System
12 lines • 425 B
TypeScript
import React, { ReactNode, HTMLAttributes } from 'react';
declare const BaseInputLabel: React.FC<BaseInputLabelProps>;
export default BaseInputLabel;
export interface BaseInputLabelProps extends HTMLAttributes<HTMLLabelElement> {
className?: string;
align?: 'start' | 'center' | 'end';
for?: string;
id?: string;
children?: ReactNode;
[key: string]: any;
}
//# sourceMappingURL=BaseInputLabel.d.ts.map