react-base-guide
Version:
react ui components
12 lines (11 loc) • 425 B
TypeScript
import { LinkProps as RouterLinkProps } from "react-router-dom";
import { StyleProps } from "../../utils/add-custom-style";
interface LinkProps extends Omit<RouterLinkProps, "to"> {
to?: string;
href?: string;
disabled?: boolean;
variant?: "simple" | "underline";
color?: "primary" | "error" | "warning" | "success" | "contrast" | "active";
styled?: StyleProps;
}
export default LinkProps;