@stanfordspezi/spezi-web-design-system
Version:
Stanford Biodesign Digital Health Spezi Web Design System
14 lines (13 loc) • 391 B
TypeScript
import { ComponentProps } from 'react';
/**
* A button component with an information icon that can be used as a trigger.
*
* @example
* ```tsx
* // Basic usage with Tooltip
* <Tooltip tooltip="Additional information here">
* <InfoButton />
* </Tooltip>
* ```
*/
export declare const InfoButton: ({ className, ...props }: ComponentProps<"button">) => import("react").JSX.Element;