Skip to main content
Nintex Community Menu Bar
Solved

Icon usage in other places

  • October 3, 2024
  • 2 replies
  • 52 views

Forum|alt.badge.img+5

Is there a way for me to access the Skuid icons in places other than in buttons, tabs, etc. An example would be to be able to insert one alongside a text box or somewhere within a responsive grid division without needing another component in the division.

Best answer by david.burns

You can put an icon inside of a text component alongside other text. Make sure that Allow HTML is checked  and then in the template area, add this line of code where you want your icon.

<svg style="width:16px; height:16px; fill:green"><use href="#ink:check-in-circle"></use> </svg>

Change the ink:check-in-circle to the icon of your choice. I included a fill color in case you wanted to change the icon color.

2 replies

david.burns
Nintex Employee
Forum|alt.badge.img+4
  • Nintex Employee
  • Answer
  • October 3, 2024

You can put an icon inside of a text component alongside other text. Make sure that Allow HTML is checked  and then in the template area, add this line of code where you want your icon.

<svg style="width:16px; height:16px; fill:green"><use href="#ink:check-in-circle"></use> </svg>

Change the ink:check-in-circle to the icon of your choice. I included a fill color in case you wanted to change the icon color.


Forum|alt.badge.img+5

@david.burns This is amazing and worked like a charm!! Thank you!