@totalsoft/rocket-ui
Version:
A set of reusable and composable React components built on top of Material UI core for developing fast and friendly web applications interfaces.
21 lines (20 loc) • 1.23 kB
TypeScript
import { Theme } from '@mui/material';
import { CardColor } from './types';
export declare const iconStyle: {
color: string;
width: string;
height: string;
margin: string;
padding: string;
};
type StyledProps = {
theme: Theme;
color: CardColor;
hasIcon: boolean;
};
declare const Card: import("@emotion/styled").StyledComponent<import("@mui/material").CardOwnProps & import("@mui/material/OverridableComponent").CommonProps & Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "className" | "style" | "classes" | "children" | "sx" | "variant" | "elevation" | "square" | "raised"> & import("@mui/system").MUIStyledCommonProps<Theme> & Partial<StyledProps>, {}, {}>;
export declare const CardContent: import("@emotion/styled").StyledComponent<import("@mui/material").CardContentOwnProps & import("@mui/material/OverridableComponent").CommonProps & Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "className" | "style" | "classes" | "children" | "sx"> & import("@mui/system").MUIStyledCommonProps<Theme> & {
hasHeader: boolean;
hasIcon: boolean;
}, {}, {}>;
export default Card;