Skip to content

Commit

Permalink
Merge branch 'develop' into imasyuko-patch-49
Browse files Browse the repository at this point in the history
  • Loading branch information
epetrow authored Sep 10, 2024
2 parents c96b42d + cc28d4f commit 95e99e1
Show file tree
Hide file tree
Showing 12 changed files with 42 additions and 1 deletion.
4 changes: 4 additions & 0 deletions packages/font-icons/dist/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -1002,6 +1002,10 @@
content: "\e08e";
}

.k-i-ruler-outline::before {
content: "\e08f";
}

.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 @@ -222,6 +222,7 @@
.k-i-wallet-solid::before { content: "\e08c"; }
.k-i-stamp::before { content: "\e08d"; }
.k-i-sticky-note::before { content: "\e08e"; }
.k-i-ruler-outline::before { content: "\e08f"; }
.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 @@ -146,6 +146,7 @@ public enum FontIcon
WalletSolid = 684,
Stamp = 685,
StickyNote = 686,
RulerOutline = 687,
Undo = 111,
Redo = 112,
ArrowRotateCcw = 113,
Expand Down
12 changes: 12 additions & 0 deletions packages/svg-icons/src-cs/Telerik.SvgIcons/Icons/RulerOutline.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
namespace Telerik.SvgIcons
{
public class RulerOutline : SvgIconBase
{
public RulerOutline()
{
Name = "ruler-outline";
Content = "<path d=\"M448.37 192H48c-8.84 0-16 7.16-16 16v96c0 8.84 7.16 16 16 16h400.37c8.84 0 16-7.16 16-16v-96c0-8.84-7.16-16-16-16m-16 96H64v-64h32.04v32h16.04v-32h32.06v32h16.03v-32h32.06v32h16.04v-32h32.06v32h16.03v-32h32.06v32h16.04v-32h32.06v32h16.03v-32h31.06v32h16.04v-32h32.72z\" />";
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 @@ -146,6 +146,7 @@ public static class SvgIcon
public static ISvgIcon WalletSolid => new WalletSolid();
public static ISvgIcon Stamp => new Stamp();
public static ISvgIcon StickyNote => new StickyNote();
public static ISvgIcon RulerOutline => new RulerOutline();
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/ruler-outline.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { SVGIcon } from '../svg-icon.interface';

export const rulerOutlineIcon: SVGIcon = {
name: 'ruler-outline',
content: '<path d="M448.37 192H48c-8.84 0-16 7.16-16 16v96c0 8.84 7.16 16 16 16h400.37c8.84 0 16-7.16 16-16v-96c0-8.84-7.16-16-16-16m-16 96H64v-64h32.04v32h16.04v-32h32.06v32h16.03v-32h32.06v32h16.04v-32h32.06v32h16.03v-32h32.06v32h16.04v-32h32.06v32h16.03v-32h31.06v32h16.04v-32h32.72z" />',
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 @@ -143,6 +143,7 @@ export { userOutlineIcon } from './icons/user-outline';
export { walletSolidIcon } from './icons/wallet-solid';
export { stampIcon } from './icons/stamp';
export { stickyNoteIcon } from './icons/sticky-note';
export { rulerOutlineIcon } from './icons/ruler-outline';
export { undoIcon } from './icons/undo';
export { redoIcon } from './icons/redo';
export { arrowRotateCcwIcon } from './icons/arrow-rotate-ccw';
Expand Down
2 changes: 1 addition & 1 deletion src/telerik-icons/icon-list.json
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@
"wallet-solid",
"stamp",
"sticky-note",
null,
"ruler-outline",
null,
null,
null,
Expand Down
10 changes: 10 additions & 0 deletions src/telerik-icons/icons.json
Original file line number Diff line number Diff line change
Expand Up @@ -1595,6 +1595,16 @@
"unicode": "e08e",
"id": 686
},
{
"name": "ruler-outline",
"ligatures": [],
"aliases": [],
"categories": [
"editing"
],
"unicode": "e08f",
"id": 687
},
{
"name": "undo",
"ligatures": [],
Expand Down
4 changes: 4 additions & 0 deletions src/telerik-icons/solid/ruler-outline.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 95e99e1

Please sign in to comment.