projex-ui-dev
Version:
Projex' user interface
14 lines (13 loc) • 437 B
TypeScript
import React, { PropsWithChildren, ReactNode } from 'react';
type Props = PropsWithChildren<{
title: string;
progress?: number;
button?: {
label: string;
href?: string;
onClick?: React.MouseEventHandler<HTMLButtonElement>;
icon?: ReactNode | string;
};
}>;
declare const QuickActionCard: ({ title, children, progress, button }: Props) => React.JSX.Element;
export default QuickActionCard;