UNPKG

soignant-nomade-ui

Version:

A react library for the soignant-nomade design system. You can find a storybook project inside it

6 lines (5 loc) 279 B
import { CSSProperties, HTMLProps } from "react"; export interface LabelComponentProps extends HTMLProps<HTMLLabelElement> { overwriteLabelStyle?: CSSProperties; } export declare const Label: ({ overwriteLabelStyle, ...labelProps }: LabelComponentProps) => JSX.Element;