UNPKG

nice-ui

Version:

React design system, components, and utilities

15 lines (14 loc) 406 B
import * as React from 'react'; export interface ClickCardProps { title: React.ReactNode; to: string; toTitle?: string; tall?: boolean; children?: React.ReactNode | undefined; icon?: React.ReactNode; label?: React.ReactNode; header?: React.ReactNode; noRotate?: boolean; onClick?: React.MouseEventHandler; } export declare const ClickCard: React.FC<ClickCardProps>;