Fix for aria-label ToggleSmall of carbon-components-react (#39011)

* Change ariaLabel of ToggleSmall Carbon react component from to Kebab Case to be consistent with implementation https://github.com/carbon-design-system/carbon/blob/master/packages/react/src/components/ToggleSmall/ToggleSmall.js#L121

* Change ariaLabel of ToggleSmall Carbon react component from lower case aria-label
This commit is contained in:
Kai
2019-10-14 14:20:01 -07:00
committed by Andrew Branch
parent 508404cac2
commit 2bcead7bfc
@@ -6,7 +6,7 @@ interface InheritedProps extends
Omit<ReactInputAttr, ExcludedAttributes>,
RequiresIdProps
{
ariaLabel: NonNullable<React.AriaAttributes["aria-label"]>,
["aria-label"]: NonNullable<React.AriaAttributes["aria-label"]>,
}
export interface ToggleSmallProps extends InheritedProps {