---
title: "Feature: Set Up Icons for Timesheet's Types"
canonical: "https://help.fieldbuddy.com/space/FBDOCS/3107915014/Feature%3A%20Set%20Up%20Icons%20for%20Timesheet's%20Types"
format: markdown
---
If you'd like to assign a specific icon to the type of registered timesheet line item, you can do it in the [configuration's appSettings](https://confluence.tools.intigris.nl/display/FBMB/AppSettings#AppSettings-timesheets). 


Search an icon here: [https://fontawesome.com/icons?d=gallery&q=wrench](https://fontawesome.com/icons?d=gallery&q=wrench)

Note: not all the icons are supported.


Note: if you don't assign any icon, the default icon displayed is "wrench".

<span style="color: #eceff4">"</span>

##### **appSettings.timesheets**

```javascript
timesheets": {
"implicit": true,
"manual": false,
"table": "FIELDBUDDY__Timesheet__c",
	"groupBy": {
		"table": "FIELDBUDDY__Timesheet_Lineitem__c",
		"field": "FIELDBUDDY__Type__c",
		"icons": {
			"Servicebezoek": "wrench",
			"Reizen": "car",
			"Vergadering": "users",
			"Lunch": "hourglass"
		}
	}
}
```

##### **appSettings.timesheets**

```javascript
timesheets": {
"implicit": true,
"manual": false,
"table": "Timesheet__c",
	"groupBy": {
		"table": "Timesheet_Lineitem__c",
		"field": "Type__c",
		"icons": {
			"Servicebezoek": "wrench",
			"Reizen": "car",
			"Vergadering": "users",
			"Lunch": "hourglass"
		}
	}
}
```