FrontPastel/node_modules/@mui/material/Link/getTextDecoration.d.ts

16 lines
390 B
TypeScript
Raw Normal View History

2024-04-17 13:55:11 +00:00
import type { Theme } from '../styles';
export declare const colorTransformations: {
primary: string;
textPrimary: string;
secondary: string;
textSecondary: string;
error: string;
};
declare const getTextDecoration: <T extends Theme>({ theme, ownerState, }: {
theme: T;
ownerState: {
color: string;
};
}) => string;
export default getTextDecoration;