If I pass the title as a prop to the Checkbox component, it will be removed before passing it to the HTML attribute title.
Like the data-*, aria-* and role attributes it should be passed over to the HTML.
E.g.
<Checkbox title="Dr. Prof." />
should be mapped to
<input type="checkbox" title="Dr. Prof." />.
If I pass the
titleas a prop to theCheckboxcomponent, it will be removed before passing it to the HTML attributetitle.Like the
data-*,aria-*androleattributes it should be passed over to the HTML.E.g.
<Checkbox title="Dr. Prof." />should be mapped to
<input type="checkbox" title="Dr. Prof." />.