UNPKG

@cerberus-design/react

Version:

The Cerberus Design React component library.

14 lines (13 loc) 437 B
import { ButtonProps } from '../button/button'; /** * This module provides the trigger item for the cta modal. * @module 'react/cta-modal/trigger-item' */ export interface TriggerItemProps extends ButtonProps { asChild?: boolean; } /** * Trigger item for the cta modal which renders content based on the actions. * type. */ export declare function TriggerItem(props: TriggerItemProps): import("react/jsx-runtime").JSX.Element;