UNPKG

@atlaskit/rovo-agent-components

Version:

This package host public components related to rovo agents, the components here are needed for other public atlaskit packages

17 lines (16 loc) 611 B
import React from 'react'; import type { SizeType } from '@atlaskit/avatar'; interface AgentMenuItemSkeletonProps { index: number; containerHeight?: number; skeletonTextHeight?: number; skeletonTextWidth?: number; skeletonAvatarSize?: SizeType; /** * Horizontal padding for the skeleton container. * @default 'space.075'. */ paddingHorizontal?: string; } export declare const AgentMenuItemSkeleton: ({ index, containerHeight, skeletonTextHeight, skeletonTextWidth, skeletonAvatarSize, paddingHorizontal, }: AgentMenuItemSkeletonProps) => React.JSX.Element; export {};