lune-ui-lib
Version:
Lune UI Components Library
13 lines (12 loc) • 380 B
TypeScript
import type { SxProps } from '@mui/material';
import React, { FC, MouseEventHandler } from 'react';
export interface CardProps {
children?: React.ReactNode;
sx?: SxProps;
backgroundImage: string;
gradientColor: string;
onClick?: MouseEventHandler<HTMLElement>;
compact?: boolean;
}
declare const CardContainer: FC<CardProps>;
export default CardContainer;