UNPKG

ponchojs

Version:

Poncho

13 lines (12 loc) 411 B
/// <reference types="react" /> declare type Props = { title: string | JSX.Element; subtitle?: string | JSX.Element; icon?: string; isFeatured?: boolean; image?: string; onClick?: (event: React.MouseEvent<HTMLAnchorElement, MouseEvent>) => void; href?: string; }; export declare const Panel: import("react").MemoExoticComponent<(props: Props) => JSX.Element>; export {};