UNPKG

@findnlink/neuro-ui

Version:
16 lines (15 loc) 508 B
import { HTMLAttributes } from 'react'; import { UtilInterface } from '../../util/interfaces'; export interface CardProps extends HTMLAttributes<HTMLDivElement>, UtilInterface { children: any; type?: 'image' | ''; href?: string; } export interface CardHeaderProps extends HTMLAttributes<HTMLDivElement>, UtilInterface { children: any; type?: 'image' | ''; href?: string; } export interface CardContentProps extends HTMLAttributes<HTMLDivElement>, UtilInterface { children: any; }