@prisma-cms/front-editor
Version:
17 lines (16 loc) • 449 B
TypeScript
import { TypographyProps } from 'material-ui/Typography';
import { LinkProps } from 'next/link';
export interface UiLinkProps extends LinkProps {
classes?: {
root: string;
text: string;
};
className?: string;
textClassName?: string;
style?: any;
title?: string;
onClick?: (event?: any) => void;
color?: TypographyProps['color'];
variant?: TypographyProps['variant'];
to?: LinkProps['href'];
}