anvil/striker-ui/types/SimpleLinkProps.d.ts
2021-06-04 12:11:48 -04:00

8 lines
212 B
TypeScript

import { AnchorHTMLAttributes } from 'react';
import { LinkProps } from 'next/link';
type SimpleLinkProps = {
linkProps: Omit<LinkProps, 'passRef'>;
anchorProps?: AnchorHTMLAttributes<HTMLAnchorElement>;
};