@retailmenot/anchor
Version:
A React UI Library by RetailMeNot
15 lines (14 loc) • 444 B
TypeScript
import * as React from 'react';
import { SpaceProps } from '@xstyled/system';
import { MenuSizeProps } from '../Menu.component';
export interface ItemProps extends React.HTMLAttributes<HTMLAnchorElement>, SpaceProps {
path?: string;
label?: string;
children?: any;
className?: string;
active?: boolean;
size?: MenuSizeProps;
as?: any;
type?: any;
}
export declare const Item: React.FunctionComponent<ItemProps>;