@atlaskit/rovo-agent-components
Version:
This package host public components related to rovo agents, the components here are needed for other public atlaskit packages
15 lines (14 loc) • 794 B
TypeScript
import React from 'react';
import type { agentVerified_AtlaskitRovoAgentComponents$key } from './__generated__/agentVerified_AtlaskitRovoAgentComponents.graphql';
export type AgentVerifiedProps = AgentVerifiedIconProps & {
agentRef: agentVerified_AtlaskitRovoAgentComponents$key | null;
};
export declare const AgentVerified: ({ agentRef, adjacentTextSize, }: AgentVerifiedProps) => React.JSX.Element | null;
export type AgentVerifiedIconProps = {
/**
* Height matches line-height of adjacent text for proper vertical alignment
* when inline content wraps to multiple lines.
*/
adjacentTextSize?: 'body' | 'textLarge' | 'headingMedium' | 'headingLarge';
};
export declare const AgentVerifiedIcon: ({ adjacentTextSize, }: AgentVerifiedIconProps) => React.JSX.Element;