Skip to content

Commit 6baff61

Browse files
authored
Add AI Icon (#39)
* add ai icon * update copyright header * fix lint * fix lint
1 parent b5c78c9 commit 6baff61

File tree

5 files changed

+69
-0
lines changed

5 files changed

+69
-0
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
## Unreleased
44

55
### Added
6+
- Added a new custom icon:
7+
ai--sparkle
68

79
### Fixed
810

src/apps/es/ai--sparkle/index.tsx

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
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);

svg/icons/ai--sparkle/16.svg

Lines changed: 10 additions & 0 deletions
Loading

svg/icons/ai--sparkle/24.svg

Lines changed: 10 additions & 0 deletions
Loading

svg/icons/ai--sparkle/32.svg

Lines changed: 3 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)