@grandlinex/react-components
Version:
8 lines (7 loc) • 376 B
TypeScript
import React from 'react';
import { CardProps } from '../Card/Card';
export type HCardProps = Omit<CardProps, 'badges' | 'button' | 'menu'> & {
imageWidth?: number | string;
};
declare function HCard({ className, children, imgUrl, icon, title, color, order, hoverButton, imgBase, iconCover, date, imageWidth, skeleton, }: HCardProps): React.JSX.Element;
export { HCard };