norma-library
Version:
Olos/Norma-DS. Design System based on Material UI, developed with TypeScript and Styled Components to create reusable and consistent components in web applications.
12 lines (10 loc) • 318 B
text/typescript
import { SxProps } from '@mui/material';
import { Theme } from '@emotion/react';
import { ColorVariant, MuiCardBaseProps } from '../types';
export interface CardBaseProps extends MuiCardBaseProps {
sx?: SxProps<Theme>;
raised?: boolean;
border?: boolean;
color?: ColorVariant;
children?: React.ReactNode;
}