Update API reports
Signed-off-by: James Brooks <jamesbrooks@spotify.com>
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user