node_modules ignore

This commit is contained in:
2025-05-08 23:43:47 +02:00
parent e19d52f172
commit 4574544c9f
65041 changed files with 10593536 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
import * as React from 'react';
import * as Avatar from '@radix-ui/react-avatar';
import { FlexProps } from '../../primitives/Flex';
type ItemElement = HTMLSpanElement;
interface ItemProps extends Avatar.AvatarProps, Pick<Avatar.AvatarImageProps, 'onLoadingStatusChange' | 'src' | 'alt'> {
/**
* @default 600
* @description Useful for delaying rendering so it only
* appears for those with slower connections.
*/
delayMs?: Avatar.AvatarFallbackProps['delayMs'];
fallback: React.ReactNode;
/**
* @default false
* @description Useful for showing a preview of the image
* on hover in a tooltip.
*/
preview?: boolean;
}
declare const Item: React.ForwardRefExoticComponent<ItemProps & React.RefAttributes<HTMLSpanElement>>;
type GroupElement = HTMLDivElement;
interface GroupProps extends Omit<FlexProps, 'tag'> {
}
declare const Group: React.ForwardRefExoticComponent<Omit<GroupProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
export { Item, Group };
export type { ItemElement, ItemProps, GroupElement, GroupProps };
//# sourceMappingURL=Avatar.d.ts.map