Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feature/#227 Add set of icons (read carefully steps) #246

Merged
merged 2 commits into from
Aug 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions public/icons/android.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions public/icons/apple.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions public/icons/arrowdown.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions public/icons/arrowleft.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions public/icons/arrowright.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions public/icons/creditcard.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions public/icons/linkedin.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions public/icons/tiktok.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions public/icons/twitch.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions public/icons/youtube.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
174 changes: 174 additions & 0 deletions src/pods/properties/components/icon-selector/modal/icons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -395,6 +395,7 @@ export const iconCollection: IconInfo[] = [
'media',
'tweet',
'post',
'profile',
'message',
'chat',
'follow',
Expand Down Expand Up @@ -431,6 +432,7 @@ export const iconCollection: IconInfo[] = [
'social',
'media',
'post',
'profile',
'message',
'chat',
'follow',
Expand All @@ -454,6 +456,7 @@ export const iconCollection: IconInfo[] = [
'social',
'media',
'post',
'profile',
'message',
'chat',
'follow',
Expand All @@ -468,4 +471,175 @@ export const iconCollection: IconInfo[] = [
],
categories: ['IT'],
},
{
name: 'Youtube',
filename: 'youtube.svg',
searchTerms: [
'youtube',
'videos',
'stream',
'channel',
'subscribe',
'like',
'comment',
'share',
'notification',
'feed',
'shorts',
'membership',
'playlists',
],
categories: ['IT'],
},
{
name: 'Twitch',
filename: 'twitch.svg',
searchTerms: [
'twitch',
'stream',
'live',
'broadcast',
'channel',
'subscribe',
'follow',
'chat',
'emotes',
'bits',
'donate',
'clip',
'bots',
],
categories: ['IT'],
},
{
name: 'Tiktok',
filename: 'tiktok.svg',
searchTerms: [
'tiktok',
'stream',
'profile',
'follow',
'like',
'comment',
'share',
'notification',
'feed',
'shorts',
],
categories: ['IT'],
},
{
name: 'Linkedin',
filename: 'linkedin.svg',
searchTerms: [
'linkedin',
'social',
'media',
'profile',
'network',
'job',
'work',
'business',
'professional',
'resume',
'cv',
'employment',
'recruitment',
],
categories: ['IT'],
},
{
name: 'Credit card',
filename: 'creditcard.svg',
searchTerms: [
'credit card',
'payment',
'buy',
'purchase',
'pay',
'money',
'bank',
'finance',
'transaction',
'visa',
'mastercard',
'american express',
'paypal',
],
categories: ['Ecommerce'],
},
{
name: 'Android',
filename: 'android.svg',
searchTerms: [
'android',
'system',
'mobile',
'phone',
'device',
'smartphone',
'tablet',
'application',
'play store',
'google play',
],
categories: ['IT'],
},
{
name: 'Apple',
filename: 'apple.svg',
searchTerms: [
'apple',
'system',
'mobile',
'phone',
'device',
'smartphone',
'tablet',
'application',
'app store',
],
categories: ['IT'],
},
{
name: 'Arrow down',
filename: 'arrowdown.svg',
searchTerms: [
'arrow down',
'down',
'move down',
'go down',
'download',
'decrease',
'reduce',
],
categories: ['IT'],
},
{
name: 'Arrow left',
filename: 'arrowleft.svg',
searchTerms: [
'arrow left',
'left',
'move left',
'go left',
'back',
'previous',
'return',
],
categories: ['IT'],
},
{
name: 'Arrow right',
filename: 'arrowright.svg',
searchTerms: [
'arrow right',
'right',
'move right',
'go right',
'forward',
'next',
],
categories: ['IT'],
},
];
Loading