UNPKG

@openhands/ui

Version:
10 lines (9 loc) 571 B
import { PropsWithChildren, ReactElement } from 'react'; import { BaseProps, HTMLProps } from '../../shared/types'; import { InteractiveChipType } from './utils'; export type InteractiveChipProps = Omit<HTMLProps<"button">, "aria-disabled"> & { chipType?: InteractiveChipType; start?: ReactElement<HTMLProps<"svg">>; end?: ReactElement<HTMLProps<"svg">>; } & BaseProps; export declare const InteractiveChip: ({ chipType, className, children, start, end, testId, ...props }: PropsWithChildren<InteractiveChipProps>) => import("react/jsx-runtime").JSX.Element;