anvil/striker-ui/types/SimpleLinkProps.d.ts

8 lines
212 B
TypeScript
Raw Normal View History

2021-02-19 05:22:34 +00:00
import { AnchorHTMLAttributes } from 'react';
import { LinkProps } from 'next/link';
type SimpleLinkProps = {
linkProps: Omit<LinkProps, 'passRef'>;
anchorProps?: AnchorHTMLAttributes<HTMLAnchorElement>;
};