Update API reports

Signed-off-by: James Brooks <jamesbrooks@spotify.com>
This commit is contained in:
James Brooks
2025-07-03 17:44:08 +01:00
parent 17beb9bca8
commit 45b9738d58
+16 -10
View File
@@ -917,11 +917,14 @@ export interface GridProps extends SpaceProps {
}
// @public (undocumented)
export const Heading: <T extends ElementType = 'h1'>(
props: HeadingProps<T> & {
ref?: React.Ref<any>;
},
) => React.ReactElement | null;
export const Heading: {
<T extends ElementType = 'h1'>(
props: HeadingProps<T> & {
ref?: React.ComponentPropsWithRef<T>['ref'];
},
): React.ReactElement<HeadingProps<T>, T>;
displayName: string;
};
// @public (undocumented)
export type HeadingOwnProps = {
@@ -1576,11 +1579,14 @@ export interface TabsRootWithoutOrientation
> {}
// @public (undocumented)
const Text_2: <T extends ElementType = 'p'>(
props: TextProps<T> & {
ref?: React.Ref<any>;
},
) => React.ReactElement | null;
const Text_2: {
<T extends ElementType = 'p'>(
props: TextProps<T> & {
ref?: React.ComponentPropsWithRef<T>['ref'];
},
): React.ReactElement<TextProps<T>, T>;
displayName: string;
};
export { Text_2 as Text };
// @public (undocumented)