Skip to content

Commit

Permalink
feat: generate icons metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
kendo-bot authored and inikolova committed Sep 12, 2024
1 parent 6816e63 commit 1564123
Show file tree
Hide file tree
Showing 9 changed files with 27 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/font-icons/dist/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -1026,6 +1026,10 @@
content: "\e094";
}

.k-i-x-logo::before {
content: "\e095";
}

.k-i-undo::before {
content: "\e100";
}
Expand Down
Binary file modified packages/font-icons/dist/kendo-font-icons.ttf
Binary file not shown.
1 change: 1 addition & 0 deletions packages/font-icons/scss/_icon-list.scss
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,7 @@
.k-i-highlight::before { content: "\e092"; }
.k-i-highlight-free::before { content: "\e093"; }
.k-i-free-text::before { content: "\e094"; }
.k-i-x-logo::before { content: "\e095"; }
.k-i-undo::before { content: "\e100"; }
.k-i-undo-large::before { content: "\e100"; }
.k-i-redo::before { content: "\e101"; }
Expand Down
Binary file modified packages/font-icons/scss/kendo-font-icons.ttf
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@ public enum FontIcon
Highlight = 690,
HighlightFree = 691,
FreeText = 692,
XLogo = 693,
Undo = 111,
Redo = 112,
ArrowRotateCcw = 113,
Expand Down
12 changes: 12 additions & 0 deletions packages/svg-icons/src-cs/Telerik.SvgIcons/Icons/XLogo.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
namespace Telerik.SvgIcons
{
public class XLogo : SvgIconBase
{
public XLogo()
{
Name = "x-logo";
Content = "<path d=\"M448 64h-32L288.01 204 199.04 64H64l146.02 226L64.03 448h31.02l128.96-141 88.01 141h135.96L302.53 222.49zm-55.99 352h-66.09l-84.89-131-122-189h66.05l85.37 130.89 12.97 20.59z\" />";
ViewBox = "0 0 512 512";
}
}
}
1 change: 1 addition & 0 deletions packages/svg-icons/src-cs/Telerik.SvgIcons/SvgIcon.cs
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@ public static class SvgIcon
public static ISvgIcon Highlight => new Highlight();
public static ISvgIcon HighlightFree => new HighlightFree();
public static ISvgIcon FreeText => new FreeText();
public static ISvgIcon XLogo => new XLogo();
public static ISvgIcon Undo => new Undo();
public static ISvgIcon Redo => new Redo();
public static ISvgIcon ArrowRotateCcw => new ArrowRotateCcw();
Expand Down
7 changes: 7 additions & 0 deletions packages/svg-icons/src/icons/x-logo.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { SVGIcon } from '../svg-icon.interface';

export const xLogoIcon: SVGIcon = {
name: 'x-logo',
content: '<path d="M448 64h-32L288.01 204 199.04 64H64l146.02 226L64.03 448h31.02l128.96-141 88.01 141h135.96L302.53 222.49zm-55.99 352h-66.09l-84.89-131-122-189h66.05l85.37 130.89 12.97 20.59z" />',
viewBox: '0 0 512 512'
}
1 change: 1 addition & 0 deletions packages/svg-icons/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,7 @@ export { editAnnotationsIcon } from './icons/edit-annotations';
export { highlightIcon } from './icons/highlight';
export { highlightFreeIcon } from './icons/highlight-free';
export { freeTextIcon } from './icons/free-text';
export { xLogoIcon } from './icons/x-logo';
export { undoIcon } from './icons/undo';
export { redoIcon } from './icons/redo';
export { arrowRotateCcwIcon } from './icons/arrow-rotate-ccw';
Expand Down

0 comments on commit 1564123

Please sign in to comment.