UNPKG

@carbon/ibm-products

Version:

Carbon for IBM Products

27 lines (26 loc) 814 B
/** * Copyright IBM Corp. 2020, 2024 * * This source code is licensed under the Apache-2.0 license found in the * LICENSE file in the root directory of this source tree. */ import React from 'react'; /** * The combo button item provides additional actions a user can take. */ declare const ComboButtonItem: { ({ ...rest }: { [x: string]: any; }): React.JSX.Element; propTypes: { /** Provide the contents of the `ComboButtonItem` */ children: any; /** Specify whether the `ComboButton` should be disabled, or not */ disabled: any; /** Provide an optional `href` for the `ComboButtonItem` to become an `a` element */ href: any; /** Provide an optional icon to render */ renderIcon: any; }; }; export { ComboButtonItem };