@prisma-cms/front-editor
Version:
26 lines (16 loc) • 417 B
text/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']
}