UNPKG

@eccenca/gui-elements

Version:

GUI elements based on other libraries, usable in React application, written in Typescript.

6 lines (5 loc) 285 B
import React from "react"; import { LinkProps as CarbonLinkProps } from "@carbon/react"; export type LinkProps = Omit<CarbonLinkProps<"a">, "ref">; export declare const Link: ({ className, children, href, onClick, ...otherProps }: LinkProps) => React.JSX.Element; export default Link;