@foris/ai-agent 0.10.2 → 0.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ai-agent.css +1 -1
- package/dist/ai-agent.es.js +4593 -4503
- package/dist/ai-agent.umd.js +44 -44
- package/dist/components/ai-agent-icon/AiAgentIcon.d.ts +20 -0
- package/dist/components/ai-agent-icon/index.d.ts +2 -0
- package/dist/components/summary-card/locale/en.json.d.ts +2 -1
- package/dist/components/summary-card/locale/es.json.d.ts +2 -1
- package/package.json +1 -1
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
/**
|
|
3
|
+
* Props for the AiAgentIcon component.
|
|
4
|
+
*/
|
|
5
|
+
interface AiAgentIconProps {
|
|
6
|
+
/** Whether the icon should display a spin animation (e.g. during loading). */
|
|
7
|
+
isAnimated?: boolean;
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* AiAgentIcon - Circular gradient ring icon representing the AI agent brand.
|
|
11
|
+
*
|
|
12
|
+
* Renders a donut-shaped SVG ring with a left-to-right gradient
|
|
13
|
+
* from coral (#FF7173) to teal (#0DC1D3). When `isAnimated` is true,
|
|
14
|
+
* a continuous rotation animation is applied to indicate loading.
|
|
15
|
+
*
|
|
16
|
+
* @param {AiAgentIconProps} props - Component props.
|
|
17
|
+
* @returns {JSX.Element} The rendered SVG icon.
|
|
18
|
+
*/
|
|
19
|
+
declare const AiAgentIcon: React.FC<AiAgentIconProps>;
|
|
20
|
+
export default AiAgentIcon;
|