/* * Copyright 2026 Hypergiant Galactic Systems Inc. All rights reserved. * This file is licensed to you under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. You may obtain a copy * of the License at https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS * OF ANY KIND, either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ import { LinkButtonProps } from "./types.js"; import "client-only"; import * as react_jsx_runtime119 from "react/jsx-runtime"; //#region src/components/button/link.d.ts /** * LinkButton - A button component that renders as a link element * * Provides accessible link functionality with button-like styling and visual feedback. * Perfect for navigation actions that should look like buttons but behave as links. * Includes icon support and integrates with React Aria for keyboard navigation and accessibility. * * @param props - The link button props. * @param props.ref - Reference to the anchor element. * @param props.children - Link button content (text, icons, or both). * @param props.className - Additional CSS class names for styling. * @param props.color - Semantic color variant. * @param props.size - Size of the link button. * @param props.variant - Visual style variant. * @param props.href - Navigation destination URL. * @returns The link button component. * * @example * ```tsx * // Basic link button * Go to Dashboard * ``` * * @example * ```tsx * // Link button with different variants and sizes * Create New * Settings * ``` * * @example * ```tsx * // Link button with icon * * * View Profile * * ``` * * @example * ```tsx * // Icon-only link button * * * * ``` * * @example * ```tsx * // Link button with different colors * Delete Account * Reset Data * ``` */ declare function LinkButton({ ref, ...props }: LinkButtonProps): react_jsx_runtime119.JSX.Element; //#endregion export { LinkButton }; //# sourceMappingURL=link.d.ts.map