@szum-tech/design-system
Version:
Szum-Tech design system with tailwindcss support
14 lines (9 loc) • 677 B
TypeScript
import * as React from 'react';
import { Avatar as Avatar$1 } from 'radix-ui';
type AvatarProps = React.ComponentProps<typeof Avatar$1.Root>;
declare function Avatar({ className, ...props }: AvatarProps): React.JSX.Element;
type AvatarImageProps = React.ComponentProps<typeof Avatar$1.Image>;
declare function AvatarImage({ className, ...props }: AvatarImageProps): React.JSX.Element;
type AvatarFallbackProps = React.ComponentProps<typeof Avatar$1.Fallback>;
declare function AvatarFallback({ className, ...props }: AvatarFallbackProps): React.JSX.Element;
export { Avatar, AvatarFallback, type AvatarFallbackProps, AvatarImage, type AvatarImageProps, type AvatarProps };