@makeen.io/material-ui-kit
Version:
Makeen UI components kit. Based on material-ui.
17 lines (16 loc) • 536 B
TypeScript
import React from "react";
import { CardProps } from "@material-ui/core";
declare type CardWrapperProps = CardProps & {
cardStyle?: any;
};
export declare type WidgetCardProps = CardWrapperProps & {
actions?: React.ReactNode;
beforeactions?: any[];
cardStyle?: Function;
children: React.ReactNode;
contentStyle?: Function;
customStyle?: Function;
headerCustomStyle?: Function;
};
declare const _default: ({ customStyle, contentStyle, ...props }: WidgetCardProps) => JSX.Element;
export default _default;