import type { ActionableProps } from "../Actionable"; import type { IconProps } from "../Icon"; export type Props = Pick & { /** Icon at the start position */ icon?: IconProps["svg"]; /** Link color, based on the color tokens * @default "primary" */ color?: "inherit" | "critical" | "primary" | "positive" | "warning"; /** Link render variant * @default "underline" */ variant?: "plain" | "underline"; };