UNPKG

apphouse

Version:

Component library for React that uses observable state management and theme-able components.

10 lines (9 loc) 220 B
/// <reference types="react" /> interface ProTipProps { text: string; icon?: any; variant?: 'warning' | 'tip'; children?: React.ReactNode; } export declare const ProTip: React.FC<ProTipProps>; export {};