11 lines
No EOL
228 B
TypeScript
11 lines
No EOL
228 B
TypeScript
import type { Theme } from "../styles/index.js";
|
|
declare const getTextDecoration: <T extends Theme>({
|
|
theme,
|
|
ownerState
|
|
}: {
|
|
theme: T;
|
|
ownerState: {
|
|
color: string;
|
|
};
|
|
}) => string;
|
|
export default getTextDecoration; |