ohctechv3/.svn/pristine/4e/4ea95cf31d1cfd993f274d26ff94ff28721b8f8e.svn-base
2024-10-28 15:03:36 +05:30

16 lines
390 B
Plaintext

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;