Skip to content

Commit

Permalink
Merge pull request #506 from Lemoncode/feature/#227-add-icons
Browse files Browse the repository at this point in the history
[UPDATE]feature/#227 Add set of icons (read carefully steps)
  • Loading branch information
brauliodiez authored Oct 28, 2024
2 parents 2d7871e + e3d6722 commit 8384d13
Show file tree
Hide file tree
Showing 16 changed files with 112 additions and 1 deletion.
1 change: 1 addition & 0 deletions public/icons/arrowfatdown.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/arrowfatleft.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/arrowfatright.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/arrowfatup.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/arrowscounterclockwise.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/check.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/checkfat.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/company.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/copyright.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/doublecheck.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/factory.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/home.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/keyboard.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/plug.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/printer.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
98 changes: 97 additions & 1 deletion src/pods/properties/components/icon-selector/modal/icons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1175,7 +1175,7 @@ export const iconCollection: IconInfo[] = [
{
name: 'Chat',
filename: 'chat.svg',
searchTerms: ['chat', 'message', 'conversation', 'chatting'],
searchTerms: ['chat', 'message', 'conversation', 'chatting', 'comment'],
categories: ['IT'],
},
{
Expand Down Expand Up @@ -1671,4 +1671,100 @@ export const iconCollection: IconInfo[] = [
searchTerms: ['arrows', 'clockwise', 'direction', 'rotate'],
categories: ['IT'],
},
{
name: 'Arrows counter clockwise',
filename: 'arrowscounterclockwise.svg',
searchTerms: ['arrows', 'counter clockwise', 'direction', 'rotate'],
categories: ['IT'],
},
{
name: 'Arrow fat down',
filename: 'arrowfatdown.svg',
searchTerms: ['arrow', 'fat', 'down', 'move'],
categories: ['IT'],
},
{
name: 'Arrow fat left',
filename: 'arrowfatleft.svg',
searchTerms: ['arrow', 'fat', 'left', 'move'],
categories: ['IT'],
},
{
name: 'Arrow fat right',
filename: 'arrowfatright.svg',
searchTerms: ['arrow', 'fat', 'right', 'move'],
categories: ['IT'],
},
{
name: 'Arrow fat up',
filename: 'arrowfatup.svg',
searchTerms: ['arrow', 'fat', 'up', 'move'],
categories: ['IT'],
},
{
name: 'Check fat',
filename: 'checkfat.svg',
searchTerms: ['check', 'confirmation', 'validate', 'success'],
categories: ['IT'],
},
{
name: 'Check',
filename: 'check.svg',
searchTerms: ['check', 'confirmation', 'validate', 'success'],
categories: ['IT'],
},
{
name: 'Double check',
filename: 'doublecheck.svg',
searchTerms: ['check', 'confirmation', 'validate', 'double'],
categories: ['IT'],
},
{
name: 'Start',
filename: 'home.svg',
searchTerms: ['start', 'home', 'begin', 'launch'],
categories: ['IT'],
},
{
name: 'Company',
filename: 'company.svg',
searchTerms: ['company', 'business', 'enterprise', 'corporation'],
categories: ['IT'],
},
{
name: 'Factory',
filename: 'factory.svg',
searchTerms: ['factory', 'industry', 'manufacture', 'production'],
categories: ['IT'],
},
{
name: 'Keyboard',
filename: 'keyboard.svg',
searchTerms: ['keyboard', 'device', 'computer', 'write'],
categories: ['IT'],
},
{
name: 'Printer',
filename: 'printer.svg',
searchTerms: ['printer', 'device', 'computer', 'imprint'],
categories: ['IT'],
},
{
name: 'Plug',
filename: 'plug.svg',
searchTerms: ['plug', 'device', 'connect', 'power'],
categories: ['IT'],
},
{
name: 'Copyright',
filename: 'copyright.svg',
searchTerms: [
'copyright',
'rights',
'protected',
'intellectual',
'property',
],
categories: ['IT'],
},
];

0 comments on commit 8384d13

Please sign in to comment.