UNPKG

@carbon/ibm-products

Version:

Carbon for IBM Products

22 lines (21 loc) 721 B
/** * Copyright IBM Corp. 2023, 2023 * * 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, { PropsWithChildren, ReactNode } from 'react'; export interface InlineTipLinkProps extends PropsWithChildren { /** * Provide the contents of the InlineTipLink. */ children: ReactNode; /** * Provide an optional class to be applied to the containing node. */ className?: string; } /** * This is a standard Carbon link, styled specifically for use inside InlineTip. */ export declare let InlineTipLink: React.ForwardRefExoticComponent<InlineTipLinkProps & React.RefAttributes<HTMLDivElement>>;