UNPKG

@workday/canvas-kit-react

Version:

The parent module that contains all Workday Canvas Kit React components

11 lines (10 loc) 333 B
import { createElemPropsHook } from '@workday/canvas-kit-react/common'; import { useSelectModel } from './useSelectModel'; /** * Sets the width of the ` SelectCard` to the `Select.Input` width. */ export const useSelectCard = createElemPropsHook(useSelectModel)(model => { return { width: model.state.width, }; });