smart-react-components
Version:
React UI library, wide variety of editable ready to use Styled and React components.
12 lines (11 loc) • 340 B
TypeScript
import React from "react";
import LinkProps from "../router/LinkProps";
import { JSXElementProps } from "../props";
interface Props extends LinkProps {
elementProps?: JSXElementProps;
isActive?: boolean;
disabled?: boolean;
waveEffect?: string;
}
declare const LinkItem: React.FC<Props>;
export default LinkItem;