@findnlink/neuro-ui
Version:
Findnlink design system
16 lines (15 loc) • 508 B
TypeScript
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;
}