diff --git a/packages/canon/report.api.md b/packages/canon/report.api.md index e993df054b..345907e44c 100644 --- a/packages/canon/report.api.md +++ b/packages/canon/report.api.md @@ -3,6 +3,7 @@ > Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/). ```ts +import type { ComponentType } from 'react'; import { Context } from 'react'; import type { CSSProperties } from 'react'; import { Field as Field_2 } from '@base-ui-components/react/field'; @@ -703,6 +704,39 @@ export type JustifyContent = | 'around' | 'between'; +// @public (undocumented) +export const Link: React_2.MemoExoticComponent< + React_2.ForwardRefExoticComponent< + LinkProps & React_2.RefAttributes + > +>; + +// @public (undocumented) +export interface LinkProps + extends Omit, 'to'> { + // (undocumented) + children: ReactNode; + // (undocumented) + className?: string; + // (undocumented) + render?: + | ((props: Omit) => ReactNode) + | ComponentType>; + // (undocumented) + style?: CSSProperties; + // (undocumented) + to: string; + // (undocumented) + variant?: + | 'subtitle' + | 'body' + | 'caption' + | 'label' + | Partial>; + // (undocumented) + weight?: 'regular' | 'bold' | Partial>; +} + // @public (undocumented) export const marginPropDefs: (spacingValues: string[]) => { m: {