@stratakit/react
Version:
A React component library for StrataKit
13 lines (12 loc) • 571 B
TypeScript
import * as React from "react";
import type { Anchor as IuiAnchor } from "@itwin/itwinui-react";
import type { PolymorphicForwardRefComponent } from "./~utils.js";
type IuiAnchorProps = React.ComponentProps<typeof IuiAnchor>;
interface AnchorProps extends Pick<IuiAnchorProps, "isExternal" | "underline"> {
isExternal?: IuiAnchorProps["isExternal"];
/** NOT IMPLEMENTED. */
underline?: IuiAnchorProps["underline"];
}
/** @see https://itwinui.bentley.com/docs/anchor */
export declare const Anchor: PolymorphicForwardRefComponent<"a", AnchorProps>;
export {};