🏷️ Updated label component interface

This commit is contained in:
Paul Valerie GOMA 2025-07-21 23:38:16 +02:00
parent e6ece32d74
commit 93fccc88bb

View File

@ -35,5 +35,12 @@ export default interface IVLabel {
* @default false * @default false
*/ */
required?: boolean; required?: boolean;
/**
* The ID of the input element that this label is associated with.
* This helps improve accessibility by linking the label to its corresponding input.
*/
for: string;
} }