UNPKG

usimple-macaw-ui

Version:
9 lines (8 loc) 285 B
import { CardProps } from "@material-ui/core/Card"; import React from "react"; export interface NavigationCardProps extends CardProps { title: string; description: string; icon: React.ReactNode; } export declare const NavigationCard: React.FC<NavigationCardProps>;