/* * 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 { ButtonProps } from "./types.js"; import "client-only"; import * as react_jsx_runtime118 from "react/jsx-runtime"; //#region src/components/button/index.d.ts /** * Button - A versatile interactive button component with multiple variants * * Provides accessible button functionality with support for different visual styles, * sizes, and interactive states. Includes icon support and integrates with React Aria * for keyboard navigation and accessibility features. * * @param props - The button props. * @param props.ref - Reference to the button element. * @param props.children - 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 button. * @param props.variant - Visual style variant. * @returns The button component. * * @example * ```tsx * // Basic button * * ``` * * @example * ```tsx * // Primary button with different sizes * * * ``` * * @example * ```tsx * // Button with icon * * ``` * * @example * ```tsx * // Icon-only button * * ``` * * @example * ```tsx * // Button with different colors * * * ``` */ declare function Button({ ref, ...props }: ButtonProps): react_jsx_runtime118.JSX.Element; //#endregion export { Button }; //# sourceMappingURL=index.d.ts.map