@clubmed/trident-ui
Version:
Shared ClubMed React UI components
10 lines (9 loc) • 313 B
TypeScript
import type { FunctionComponent, ReactNode } from 'react';
import { type IconicNames, type IconicTypes } from '../../atoms/Icons';
export declare const ButtonContent: FunctionComponent<{
showLabel: boolean;
label?: string;
children?: ReactNode;
icon?: IconicNames;
iconType?: IconicTypes;
}>;