9 lines
227 B
TypeScript
9 lines
227 B
TypeScript
import type { Theme } from '../styles';
|
|
declare const getTextDecoration: <T extends Theme>({ theme, ownerState, }: {
|
|
theme: T;
|
|
ownerState: {
|
|
color: string;
|
|
};
|
|
}) => string;
|
|
export default getTextDecoration;
|