diff --git a/src/components/label/IVLabel.type.ts b/src/components/label/IVLabel.type.ts index d9e975a..caad633 100644 --- a/src/components/label/IVLabel.type.ts +++ b/src/components/label/IVLabel.type.ts @@ -35,5 +35,12 @@ export default interface IVLabel { * @default false */ 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; + }