soignant-nomade-ui
Version:
A react library for the soignant-nomade design system. You can find a storybook project inside it
14 lines (13 loc) • 504 B
TypeScript
import { CSSProperties } from "react";
import { InputComponentProps } from "./Input";
import { LabelComponentProps } from "./Label";
interface InputLabelComponentProps {
inputProps?: InputComponentProps;
labelProps?: LabelComponentProps;
children?: React.ReactNode;
id?: string;
name: string;
overwriteLabelStyle?: CSSProperties;
}
export declare const InputLabel: ({ inputProps, labelProps, children, name, id }: InputLabelComponentProps) => JSX.Element;
export {};