@graysham/mixmotion-player
Version:
<h1 align='center'> Mixmotion Player </h1>
15 lines (13 loc) • 375 B
TypeScript
import { default as React } from 'react';
type CustomLinkProps = {
to: string;
children: React.ReactNode;
focusKey?: string;
handlePress?: () => void | undefined;
handleRelease?: () => void | undefined;
disabled?: boolean;
overrideFocus?: boolean;
className?: string;
};
export declare const CustomLink: React.FC<CustomLinkProps>;
export {};