@kwiz/fluentui
Version:
KWIZ common controls for FluentUI
15 lines (14 loc) • 546 B
TypeScript
import { InfoLabelProps } from '@fluentui/react-components';
import React from 'react';
import { FluentIconType } from '../types/common';
import { iMenuItemEX } from './menu';
export interface iCardProps {
title: string;
titleInfo?: InfoLabelProps['info'];
description?: string;
icon: FluentIconType;
menuItems?: iMenuItemEX[];
footer?: JSX.Element;
onClick: React.MouseEventHandler<HTMLDivElement>;
}
export declare const CardEX: (props: iCardProps & React.RefAttributes<HTMLDivElement>) => React.JSX.Element | null;