mui-simple
Version:
Override mui-v7 components to simplify usage
12 lines • 450 B
TypeScript
import React from 'react';
import { AlertTitle as MuiAlertTitle } from '@mui/material';
import type { AlertProps } from '@mui/material';
interface AlertStyledProps {
customColor?: string;
width?: string | number;
}
type AlertStyledPropsType = AlertStyledProps & AlertProps;
export declare const Alert: React.FC<AlertStyledPropsType>;
export declare const AlertTitle: typeof MuiAlertTitle;
export {};
//# sourceMappingURL=Alert.styled.d.ts.map