From 724854c928b708f8d9b87f99a73e87a4ce12754d Mon Sep 17 00:00:00 2001 From: tfsbuild Date: Tue, 18 Feb 2025 12:16:08 -0500 Subject: [PATCH] Adding changes from build igniteui-xplat-examples-output+PRs_2025.2.18.1 --- samples/charts/toolbar/custom-tool/src/index.tsx | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/samples/charts/toolbar/custom-tool/src/index.tsx b/samples/charts/toolbar/custom-tool/src/index.tsx index 7c65e6a1a..b645815f4 100644 --- a/samples/charts/toolbar/custom-tool/src/index.tsx +++ b/samples/charts/toolbar/custom-tool/src/index.tsx @@ -29,6 +29,7 @@ export default class Sample extends React.Component { this.setState({}); } private customIconName: IgrToolActionLabel + private customIconName2: IgrToolActionLabel private chart: IgrCategoryChart private chartRef(r: IgrCategoryChart) { this.chart = r; @@ -67,6 +68,12 @@ export default class Sample extends React.Component { iconCollectionName="CustomCollection" name="CustomIconName"> + + @@ -117,6 +124,8 @@ export default class Sample extends React.Component { const icon = ''; toolbar.registerIconFromText("CustomCollection", "CustomIcon", icon); + toolbar.registerIconFromDataURL("CustomCollection2", "CustomIcon2", "https://www.svgrepo.com/show/678/calculator.svg"); + } }