|
| 1 | +/* ======================================================================== * |
| 2 | + * Copyright 2025 HCL America Inc. * |
| 3 | + * Licensed under the Apache License, Version 2.0 (the "License"); * |
| 4 | + * you may not use this file except in compliance with the License. * |
| 5 | + * You may obtain a copy of the License at * |
| 6 | + * * |
| 7 | + * http://www.apache.org/licenses/LICENSE-2.0 * |
| 8 | + * * |
| 9 | + * Unless required by applicable law or agreed to in writing, software * |
| 10 | + * distributed under the License is distributed on an "AS IS" BASIS, * |
| 11 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * |
| 12 | + * See the License for the specific language governing permissions and * |
| 13 | + * limitations under the License. * |
| 14 | + * ======================================================================== */ |
| 15 | + |
| 16 | +import { createSvgIcon, IIconAttrs, IIconContent } from '../../../utils'; |
| 17 | + |
| 18 | +const attrs: IIconAttrs = { |
| 19 | + xmlns: 'http://www.w3.org/2000/svg', |
| 20 | + viewBox: '0 0 32 32', |
| 21 | + width: 32, |
| 22 | + height: 32, |
| 23 | +}; |
| 24 | + |
| 25 | +const content: IIconContent[] = [ |
| 26 | + { |
| 27 | + elem: 'path', |
| 28 | + attrs: { |
| 29 | + d: |
| 30 | + `M21.8119 14.3881L18.0667 4.26667L14.3214 14.3881L4.2 18.1333L14.3214 21.8786L18.0667 32L21.8119 21.8786L31.9333 18.1333L21.8119 |
| 31 | + 14.3881ZM26.1484 18.1333L20.1911 15.929L18.0667 10.1877L15.9422 15.929L9.98497 18.1333L15.9422 20.3377L18.0667 26.0789L20.1911 |
| 32 | + 20.3377L26.1484 18.1333ZM5.28213 7.4512L6.86667 11.7333L8.4512 7.4512L12.7333 5.86667L8.4512 4.28213L6.86667 0L5.28213 4.28213L1 |
| 33 | + 5.86667L5.28213 7.4512ZM6.78497 5.86667L6.86667 5.8969L6.94836 5.86667L6.86667 5.83644L6.78497 5.86667Z`, |
| 34 | + fill: 'currentColor', |
| 35 | + stroke: 'none', |
| 36 | + strokeLinejoin: 'round', |
| 37 | + strokeMiterlimit: 10, |
| 38 | + fillRule: 'evenodd', |
| 39 | + clipRule: 'evenodd', |
| 40 | + }, |
| 41 | + }, |
| 42 | +]; |
| 43 | + |
| 44 | +export default createSvgIcon('ai--sparkle', 32, content, attrs); |
0 commit comments