@wordpress/components
Version:
UI components for WordPress.
17 lines • 521 B
TypeScript
/**
* Computes the common props for the CircularOptionPicker.
*/
export declare function getComputeCircularOptionPickerCommonProps(asButtons?: boolean, loop?: boolean, ariaLabel?: string, ariaLabelledby?: string): {
metaProps: {
asButtons: boolean;
loop?: undefined;
} | {
asButtons: boolean;
loop: boolean | undefined;
};
labelProps: {
'aria-labelledby': string | undefined;
'aria-label': string | undefined;
};
};
//# sourceMappingURL=utils.d.ts.map