1+ /*******************************************************************************
2+ * CLOUDERA APPLIED MACHINE LEARNING PROTOTYPE (AMP)
3+ * (C) Cloudera, Inc. 2024
4+ * All rights reserved.
5+ *
6+ * Applicable Open Source License: Apache 2.0
7+ *
8+ * NOTE: Cloudera open source products are modular software products
9+ * made up of hundreds of individual components, each of which was
10+ * individually copyrighted. Each Cloudera open source product is a
11+ * collective work under U.S. Copyright Law. Your license to use the
12+ * collective work is as provided in your written agreement with
13+ * Cloudera. Used apart from the collective work, this file is
14+ * licensed for your use pursuant to the open source license
15+ * identified above.
16+ *
17+ * This code is provided to you pursuant a written agreement with
18+ * (i) Cloudera, Inc. or (ii) a third-party authorized to distribute
19+ * this code. If you do not have a written agreement with Cloudera nor
20+ * with an authorized and properly licensed third party, you do not
21+ * have any rights to access nor to use this code.
22+ *
23+ * Absent a written agreement with Cloudera, Inc. ("Cloudera") to the
24+ * contrary, A) CLOUDERA PROVIDES THIS CODE TO YOU WITHOUT WARRANTIES OF ANY
25+ * KIND; (B) CLOUDERA DISCLAIMS ANY AND ALL EXPRESS AND IMPLIED
26+ * WARRANTIES WITH RESPECT TO THIS CODE, INCLUDING BUT NOT LIMITED TO
27+ * IMPLIED WARRANTIES OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY AND
28+ * FITNESS FOR A PARTICULAR PURPOSE; (C) CLOUDERA IS NOT LIABLE TO YOU,
29+ * AND WILL NOT DEFEND, INDEMNIFY, NOR HOLD YOU HARMLESS FOR ANY CLAIMS
30+ * ARISING FROM OR RELATED TO THE CODE; AND (D)WITH RESPECT TO YOUR EXERCISE
31+ * OF ANY RIGHTS GRANTED TO YOU FOR THE CODE, CLOUDERA IS NOT LIABLE FOR ANY
32+ * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, PUNITIVE OR
33+ * CONSEQUENTIAL DAMAGES INCLUDING, BUT NOT LIMITED TO, DAMAGES
34+ * RELATED TO LOST REVENUE, LOST PROFITS, LOSS OF INCOME, LOSS OF
35+ * BUSINESS ADVANTAGE OR UNAVAILABILITY, OR LOSS OR CORRUPTION OF
36+ * DATA.
37+ ******************************************************************************/
38+ import React from "react" ;
39+
40+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
41+ const AiAssistantIcon = ( props : any ) =>
42+ /*#__PURE__*/ React . createElement (
43+ "svg" ,
44+ {
45+ viewBox : "0 0 24 24" ,
46+ fill : "none" ,
47+ width : "1em" ,
48+ height : "1em" ,
49+ className : "cdp-icon-ai-assistant" ,
50+ ...props ,
51+ } ,
52+ /*#__PURE__*/ React . createElement ( "path" , {
53+ d : "M2 7.207l3.838-1.383L7.207 2 8.58 5.824l3.833 1.383-3.833 1.378-1.374 3.83-1.396-3.83-3.812-1.378zM3.5 18.174l2.82-1.016 1.006-2.81 1.01 2.81 2.816 1.016-2.817 1.012L7.325 22 6.3 19.186l-2.8-1.012zM8.865 13.06l4.842-1.745 1.726-4.823 1.732 4.823L22 13.059l-4.835 1.737-1.732 4.83-1.76-4.83-4.808-1.737z" ,
54+ fill : "currentColor" ,
55+ } ) ,
56+ ) ;
57+
58+ export default AiAssistantIcon ;
0 commit comments