diff --git a/public/icons/bicycle.svg b/public/icons/bicycle.svg new file mode 100644 index 00000000..f80e796b --- /dev/null +++ b/public/icons/bicycle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/icons/bike.svg b/public/icons/bike.svg new file mode 100644 index 00000000..f70c6ab2 --- /dev/null +++ b/public/icons/bike.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/icons/subway.svg b/public/icons/subway.svg new file mode 100644 index 00000000..5da1f641 --- /dev/null +++ b/public/icons/subway.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/icons/train.svg b/public/icons/train.svg new file mode 100644 index 00000000..b7f5fc37 --- /dev/null +++ b/public/icons/train.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/icons/walk.svg b/public/icons/walk.svg new file mode 100644 index 00000000..ccd2c2be --- /dev/null +++ b/public/icons/walk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/pods/properties/components/icon-selector/modal/icons.ts b/src/pods/properties/components/icon-selector/modal/icons.ts index f465e3c4..daff3578 100644 --- a/src/pods/properties/components/icon-selector/modal/icons.ts +++ b/src/pods/properties/components/icon-selector/modal/icons.ts @@ -302,7 +302,7 @@ export const iconCollection: IconInfo[] = [ 'carriage', 'wheels', 'road', - 'transportation', + 'travel', ], categories: ['IT'], }, @@ -814,4 +814,34 @@ export const iconCollection: IconInfo[] = [ searchTerms: ['bus', 'public transport', 'transport', 'travel', 'school'], categories: ['IT'], }, + { + name: 'Bike', + filename: 'bike.svg', + searchTerms: ['bike', 'motorcycle', 'ride', 'transport', 'travel'], + categories: ['IT'], + }, + { + name: 'Bicycle', + filename: 'bicycle.svg', + searchTerms: ['bicycle', 'ride', 'transport', 'sport', 'healthy'], + categories: ['IT'], + }, + { + name: 'Train', + filename: 'train.svg', + searchTerms: ['train', 'transport', 'travel', 'railway', 'station'], + categories: ['IT'], + }, + { + name: 'Subway', + filename: 'subway.svg', + searchTerms: ['subway', 'metro', 'transport', 'travel', 'underground'], + categories: ['IT'], + }, + { + name: 'Walk', + filename: 'walk.svg', + searchTerms: ['walk', 'healthy', 'sport', 'exercise', 'health'], + categories: ['IT'], + }, ];