Skip to content

Commit 873dc72

Browse files
kendo-botepetrow
authored andcommitted
feat: generate icons metadata
1 parent 74aee12 commit 873dc72

File tree

9 files changed

+27
-0
lines changed

9 files changed

+27
-0
lines changed

packages/font-icons/dist/index.css

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
132 Bytes
Binary file not shown.

packages/font-icons/scss/_icon-list.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -524,6 +524,7 @@
524524
.k-i-weight-scale-solid::before { content: "\e16a"; }
525525
.k-i-microphone-solid::before { content: "\e16b"; }
526526
.k-i-microphone-outline::before { content: "\e16c"; }
527+
.k-i-row-expand::before { content: "\e16d"; }
527528
.k-i-play::before { content: "\e200"; }
528529
.k-i-pause::before { content: "\e201"; }
529530
.k-i-stop::before { content: "\e202"; }
132 Bytes
Binary file not shown.

packages/font-icons/src-cs/Telerik.FontIcons/Icons/FontIcon.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -368,6 +368,7 @@ public enum FontIcon
368368
WeightScaleSolid = 818,
369369
MicrophoneSolid = 819,
370370
MicrophoneOutline = 820,
371+
RowExpand = 821,
371372
Play = 205,
372373
Pause = 206,
373374
Stop = 207,
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
namespace Telerik.SvgIcons
2+
{
3+
public class RowExpand : SvgIconBase
4+
{
5+
public RowExpand()
6+
{
7+
Name = "row-expand";
8+
Content = "<path d=\"M32 0h416v480H32zm384 448V160H64v288zM320 32v96h96V32zm-32 0h-96v96h96zM64 32v96h96V32zm192 192v64h64l-80 128-80-128h64v-64\" />";
9+
ViewBox = "0 0 512 512";
10+
}
11+
}
12+
}

packages/svg-icons/src-cs/Telerik.SvgIcons/SvgIcon.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -368,6 +368,7 @@ public static class SvgIcon
368368
public static ISvgIcon WeightScaleSolid => new WeightScaleSolid();
369369
public static ISvgIcon MicrophoneSolid => new MicrophoneSolid();
370370
public static ISvgIcon MicrophoneOutline => new MicrophoneOutline();
371+
public static ISvgIcon RowExpand => new RowExpand();
371372
public static ISvgIcon Play => new Play();
372373
public static ISvgIcon Pause => new Pause();
373374
public static ISvgIcon Stop => new Stop();
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import { SVGIcon } from '../svg-icon.interface';
2+
3+
export const rowExpandIcon: SVGIcon = {
4+
name: 'row-expand',
5+
content: '<path d="M32 0h416v480H32zm384 448V160H64v288zM320 32v96h96V32zm-32 0h-96v96h96zM64 32v96h96V32zm192 192v64h64l-80 128-80-128h64v-64" />',
6+
viewBox: '0 0 512 512'
7+
}

packages/svg-icons/src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -365,6 +365,7 @@ export { weightScaleOutlineIcon } from './icons/weight-scale-outline';
365365
export { weightScaleSolidIcon } from './icons/weight-scale-solid';
366366
export { microphoneSolidIcon } from './icons/microphone-solid';
367367
export { microphoneOutlineIcon } from './icons/microphone-outline';
368+
export { rowExpandIcon } from './icons/row-expand';
368369
export { playIcon } from './icons/play';
369370
export { pauseIcon } from './icons/pause';
370371
export { stopIcon } from './icons/stop';

0 commit comments

Comments
 (0)