UNPKG

@storybook/design-system

Version:
24 lines 830 B
import React from 'react'; export interface DisplayCardProps { orientation: 'vertical' | 'horizontal'; appearance: 'official' | 'integrators' | 'community'; image?: string | React.ComponentType; name: string; displayName: string; description: string; weeklyDownloads: number; authors: { id: string; name?: string; avatarUrl?: string; }[]; isLoading: boolean; verifiedCreator: string; from: { title: string; link: string; }; clickIntercept: React.ReactNode; } export declare const DisplayCard: ({ image: ImageProp, name, displayName, description, weeklyDownloads, authors, orientation, appearance, isLoading, verifiedCreator, from, clickIntercept, ...props }: DisplayCardProps) => JSX.Element; //# sourceMappingURL=DisplayCard.d.ts.map