UNPKG

@clubmed/trident-ui

Version:

Shared ClubMed React UI components

6 lines (5 loc) 290 B
import { ComponentPropsWithoutRef } from 'react'; export interface ClickableProps extends ComponentPropsWithoutRef<'div'> { onClick: () => void; } export declare const Clickable: import('react').ForwardRefExoticComponent<ClickableProps & import('react').RefAttributes<HTMLDivElement>>;