@workday/canvas-kit-react
Version:
The parent module that contains all Workday Canvas Kit React components
12 lines (11 loc) • 364 B
JavaScript
import { createElemPropsHook } from '@workday/canvas-kit-react/common';
import { useBannerModel } from './useBannerModel';
/**
* Adds the necessary props to a `Label` component.
* Used by the Banner.Label subcomponent
*/
export const useBannerLabel = createElemPropsHook(useBannerModel)(({ state }) => {
return {
id: `label-${state.id}`,
};
});