diff --git a/build/iconsScript.js b/build/iconsScript.js index 8e0b2be41..ddefed95e 100644 --- a/build/iconsScript.js +++ b/build/iconsScript.js @@ -11,15 +11,17 @@ fs.readdir(dirname, function(e, filenames) { return } else { let name = filename.replace('.svg', '') + // let pascalName = toPascalCase(name) + let camelName = toCamel(name) let computedContent = content.replace(/(]+)>)|(<\/svg>)/ig, '') .replace(/\n/g, '') .split('').pop() - contents[name] = computedContent + contents[camelName] = computedContent fs.writeFile( - `js/${name}.js`, - `export const ${toPascalCase(name)} = ` + JSON.stringify(computedContent), + `js/${camelName}.js`, + `export const ${camelName} = ` + JSON.stringify(computedContent), () => '' ) } @@ -28,7 +30,7 @@ fs.readdir(dirname, function(e, filenames) { setTimeout(() => { fs.writeFile( 'js/iconsGenerated.js', - 'export const Icons = ' + JSON.stringify(contents), + 'export const icons = ' + JSON.stringify(contents), () => '' ) fs.writeFile( @@ -48,16 +50,20 @@ const toPascalCase = function (name) { .join('') } +const toCamel = (str) => { + return str.replace(/([-_][a-z])/ig, ($1) => { + return $1.toUpperCase().replace('-', '') + }) +} + function getImports(filenames) { - const defaultImport = "import { Icons } from './iconsGenerated.js' \n" - const defaultExport = "export default Icons \n\n\n" + const defaultImport = "import { icons } from './iconsGenerated.js' \n" + const defaultExport = "export default icons \n\n\n" const importString = filenames.map(name => { - let computedName = toPascalCase(name) - return `import { ${computedName} } from './${name}.js'` + return `import { ${name} } from './${name}.js'` }).join('\n') const exportString = filenames.map(name => { - let computedName = toPascalCase(name) - return `export { ${computedName} }` + return `export { ${name} }` }).join('\n') return defaultImport + defaultExport + importString + '\n' + exportString } diff --git a/js/account-logout.js b/js/accountLogout.js similarity index 69% rename from js/account-logout.js rename to js/accountLogout.js index 3853ba793..62ef2a78d 100644 --- a/js/account-logout.js +++ b/js/accountLogout.js @@ -1 +1 @@ -export const AccountLogout = "" \ No newline at end of file +export const accountLogout = "" \ No newline at end of file diff --git a/js/action-redo.js b/js/actionRedo.js similarity index 82% rename from js/action-redo.js rename to js/actionRedo.js index ddcae3378..bf09fc741 100644 --- a/js/action-redo.js +++ b/js/actionRedo.js @@ -1 +1 @@ -export const ActionRedo = "" \ No newline at end of file +export const actionRedo = "" \ No newline at end of file diff --git a/js/action-undo.js b/js/actionUndo.js similarity index 89% rename from js/action-undo.js rename to js/actionUndo.js index 77fa434e6..ecd61407a 100644 --- a/js/action-undo.js +++ b/js/actionUndo.js @@ -1 +1 @@ -export const ActionUndo = "" \ No newline at end of file +export const actionUndo = "" \ No newline at end of file diff --git a/js/align-center.js b/js/alignCenter.js similarity index 70% rename from js/align-center.js rename to js/alignCenter.js index de614706e..1d48e01d5 100644 --- a/js/align-center.js +++ b/js/alignCenter.js @@ -1 +1 @@ -export const AlignCenter = "" \ No newline at end of file +export const alignCenter = "" \ No newline at end of file diff --git a/js/align-left.js b/js/alignLeft.js similarity index 70% rename from js/align-left.js rename to js/alignLeft.js index aed07239c..1d9fae738 100644 --- a/js/align-left.js +++ b/js/alignLeft.js @@ -1 +1 @@ -export const AlignLeft = "" \ No newline at end of file +export const alignLeft = "" \ No newline at end of file diff --git a/js/align-right.js b/js/alignRight.js similarity index 70% rename from js/align-right.js rename to js/alignRight.js index b394b3aae..88c2952eb 100644 --- a/js/align-right.js +++ b/js/alignRight.js @@ -1 +1 @@ -export const AlignRight = "" \ No newline at end of file +export const alignRight = "" \ No newline at end of file diff --git a/js/arrow-bottom.js b/js/arrowBottom.js similarity index 57% rename from js/arrow-bottom.js rename to js/arrowBottom.js index 45d12c313..efc7013dd 100644 --- a/js/arrow-bottom.js +++ b/js/arrowBottom.js @@ -1 +1 @@ -export const ArrowBottom = "" \ No newline at end of file +export const arrowBottom = "" \ No newline at end of file diff --git a/js/arrow-left.js b/js/arrowLeft.js similarity index 56% rename from js/arrow-left.js rename to js/arrowLeft.js index c1ae161b4..f106528b5 100644 --- a/js/arrow-left.js +++ b/js/arrowLeft.js @@ -1 +1 @@ -export const ArrowLeft = "" \ No newline at end of file +export const arrowLeft = "" \ No newline at end of file diff --git a/js/arrow-right.js b/js/arrowRight.js similarity index 58% rename from js/arrow-right.js rename to js/arrowRight.js index 147d8e96c..c5313a499 100644 --- a/js/arrow-right.js +++ b/js/arrowRight.js @@ -1 +1 @@ -export const ArrowRight = "" \ No newline at end of file +export const arrowRight = "" \ No newline at end of file diff --git a/js/arrow-top.js b/js/arrowTop.js similarity index 57% rename from js/arrow-top.js rename to js/arrowTop.js index a603a8152..0c6f47d22 100644 --- a/js/arrow-top.js +++ b/js/arrowTop.js @@ -1 +1 @@ -export const ArrowTop = "" \ No newline at end of file +export const arrowTop = "" \ No newline at end of file diff --git a/js/ban.js b/js/ban.js index 3f11ae6ae..7280c14da 100644 --- a/js/ban.js +++ b/js/ban.js @@ -1 +1 @@ -export const Ban = "" \ No newline at end of file +export const ban = "" \ No newline at end of file diff --git a/js/basket-loaded.js b/js/basketLoaded.js similarity index 90% rename from js/basket-loaded.js rename to js/basketLoaded.js index 67dfc6f4e..a28cf3cb9 100644 --- a/js/basket-loaded.js +++ b/js/basketLoaded.js @@ -1 +1 @@ -export const BasketLoaded = "" \ No newline at end of file +export const basketLoaded = "" \ No newline at end of file diff --git a/js/bell.js b/js/bell.js index 0c6de1e8b..6da54f978 100644 --- a/js/bell.js +++ b/js/bell.js @@ -1 +1 @@ -export const Bell = "" \ No newline at end of file +export const bell = "" \ No newline at end of file diff --git a/js/bold.js b/js/bold.js index 112ff729f..4ecd49343 100644 --- a/js/bold.js +++ b/js/bold.js @@ -1 +1 @@ -export const Bold = "" \ No newline at end of file +export const bold = "" \ No newline at end of file diff --git a/js/bookmark.js b/js/bookmark.js index c9bc0ecbc..a8c1a22fb 100644 --- a/js/bookmark.js +++ b/js/bookmark.js @@ -1 +1 @@ -export const Bookmark = "" \ No newline at end of file +export const bookmark = "" \ No newline at end of file diff --git a/js/briefcase.js b/js/briefcase.js index 2a6e8a52d..a15ee8ba5 100644 --- a/js/briefcase.js +++ b/js/briefcase.js @@ -1 +1 @@ -export const Briefcase = "" \ No newline at end of file +export const briefcase = "" \ No newline at end of file diff --git a/js/british-pound.js b/js/britishPound.js similarity index 79% rename from js/british-pound.js rename to js/britishPound.js index b0ee23044..b46d8b2ab 100644 --- a/js/british-pound.js +++ b/js/britishPound.js @@ -1 +1 @@ -export const BritishPound = "" \ No newline at end of file +export const britishPound = "" \ No newline at end of file diff --git a/js/brush.js b/js/brush.js index 0cfef692c..65b376081 100644 --- a/js/brush.js +++ b/js/brush.js @@ -1 +1 @@ -export const Brush = "" \ No newline at end of file +export const brush = "" \ No newline at end of file diff --git a/js/calculator.js b/js/calculator.js index 2c22a26f4..830b1b0e0 100644 --- a/js/calculator.js +++ b/js/calculator.js @@ -1 +1 @@ -export const Calculator = "" \ No newline at end of file +export const calculator = "" \ No newline at end of file diff --git a/js/calendar.js b/js/calendar.js index 20ebaaf7d..cdb5098e5 100644 --- a/js/calendar.js +++ b/js/calendar.js @@ -1 +1 @@ -export const Calendar = "" \ No newline at end of file +export const calendar = "" \ No newline at end of file diff --git a/js/cart.js b/js/cart.js index 75959ddeb..99942859e 100644 --- a/js/cart.js +++ b/js/cart.js @@ -1 +1 @@ -export const Cart = "" \ No newline at end of file +export const cart = "" \ No newline at end of file diff --git a/js/chart.js b/js/chart.js index 48286a1c9..507b3ad2c 100644 --- a/js/chart.js +++ b/js/chart.js @@ -1 +1 @@ -export const Chart = "" \ No newline at end of file +export const chart = "" \ No newline at end of file diff --git a/js/check.js b/js/check.js index 9012af834..a2b57f6bf 100644 --- a/js/check.js +++ b/js/check.js @@ -1 +1 @@ -export const Check = "" \ No newline at end of file +export const check = "" \ No newline at end of file diff --git a/js/chevron-bottom.js b/js/chevronBottom.js similarity index 79% rename from js/chevron-bottom.js rename to js/chevronBottom.js index 0f007aeb7..f5e671418 100644 --- a/js/chevron-bottom.js +++ b/js/chevronBottom.js @@ -1 +1 @@ -export const ChevronBottom = "" \ No newline at end of file +export const chevronBottom = "" \ No newline at end of file diff --git a/js/chevron-left.js b/js/chevronLeft.js similarity index 77% rename from js/chevron-left.js rename to js/chevronLeft.js index ee19ef7ca..676c454ae 100644 --- a/js/chevron-left.js +++ b/js/chevronLeft.js @@ -1 +1 @@ -export const ChevronLeft = "" \ No newline at end of file +export const chevronLeft = "" \ No newline at end of file diff --git a/js/chevron-right.js b/js/chevronRight.js similarity index 76% rename from js/chevron-right.js rename to js/chevronRight.js index 4552602ab..a316df90b 100644 --- a/js/chevron-right.js +++ b/js/chevronRight.js @@ -1 +1 @@ -export const ChevronRight = "" \ No newline at end of file +export const chevronRight = "" \ No newline at end of file diff --git a/js/chevron-top.js b/js/chevronTop.js similarity index 77% rename from js/chevron-top.js rename to js/chevronTop.js index 708972863..4d4b58200 100644 --- a/js/chevron-top.js +++ b/js/chevronTop.js @@ -1 +1 @@ -export const ChevronTop = "" \ No newline at end of file +export const chevronTop = "" \ No newline at end of file diff --git a/js/cloud.js b/js/cloud.js index 83280e3c7..81b7e9ec6 100644 --- a/js/cloud.js +++ b/js/cloud.js @@ -1 +1 @@ -export const Cloud = "" \ No newline at end of file +export const cloud = "" \ No newline at end of file diff --git a/js/cloud-download.js b/js/cloudDownload.js similarity index 85% rename from js/cloud-download.js rename to js/cloudDownload.js index c9bda6f09..c54216558 100644 --- a/js/cloud-download.js +++ b/js/cloudDownload.js @@ -1 +1 @@ -export const CloudDownload = "" \ No newline at end of file +export const cloudDownload = "" \ No newline at end of file diff --git a/js/cloud-upload.js b/js/cloudUpload.js similarity index 91% rename from js/cloud-upload.js rename to js/cloudUpload.js index bb2d8659d..9c32b89e5 100644 --- a/js/cloud-upload.js +++ b/js/cloudUpload.js @@ -1 +1 @@ -export const CloudUpload = "" \ No newline at end of file +export const cloudUpload = "" \ No newline at end of file diff --git a/js/code.js b/js/code.js index 33850b69b..1ea3ffc9d 100644 --- a/js/code.js +++ b/js/code.js @@ -1 +1 @@ -export const Code = "" \ No newline at end of file +export const code = "" \ No newline at end of file diff --git a/js/comment-square.js b/js/commentSquare.js similarity index 70% rename from js/comment-square.js rename to js/commentSquare.js index cc829c0f2..22d7a9be5 100644 --- a/js/comment-square.js +++ b/js/commentSquare.js @@ -1 +1 @@ -export const CommentSquare = "" \ No newline at end of file +export const commentSquare = "" \ No newline at end of file diff --git a/js/credit-card.js b/js/creditCard.js similarity index 78% rename from js/credit-card.js rename to js/creditCard.js index 73c93a353..696df83a9 100644 --- a/js/credit-card.js +++ b/js/creditCard.js @@ -1 +1 @@ -export const CreditCard = "" \ No newline at end of file +export const creditCard = "" \ No newline at end of file diff --git a/js/cursor.js b/js/cursor.js index 17cde2173..c60bc8d9b 100644 --- a/js/cursor.js +++ b/js/cursor.js @@ -1 +1 @@ -export const Cursor = "" \ No newline at end of file +export const cursor = "" \ No newline at end of file diff --git a/js/dollar.js b/js/dollar.js index 4e9a25e7c..ff27a920b 100644 --- a/js/dollar.js +++ b/js/dollar.js @@ -1 +1 @@ -export const Dollar = "" \ No newline at end of file +export const dollar = "" \ No newline at end of file diff --git a/js/envelope-closed.js b/js/envelopeClosed.js similarity index 76% rename from js/envelope-closed.js rename to js/envelopeClosed.js index 6e649e927..53ae3bb20 100644 --- a/js/envelope-closed.js +++ b/js/envelopeClosed.js @@ -1 +1 @@ -export const EnvelopeClosed = "" \ No newline at end of file +export const envelopeClosed = "" \ No newline at end of file diff --git a/js/envelope-letter.js b/js/envelopeLetter.js similarity index 84% rename from js/envelope-letter.js rename to js/envelopeLetter.js index f597030a8..48b7302b7 100644 --- a/js/envelope-letter.js +++ b/js/envelopeLetter.js @@ -1 +1 @@ -export const EnvelopeLetter = "" \ No newline at end of file +export const envelopeLetter = "" \ No newline at end of file diff --git a/js/envelope-open.js b/js/envelopeOpen.js similarity index 82% rename from js/envelope-open.js rename to js/envelopeOpen.js index 3d2206929..7675f27fc 100644 --- a/js/envelope-open.js +++ b/js/envelopeOpen.js @@ -1 +1 @@ -export const EnvelopeOpen = "" \ No newline at end of file +export const envelopeOpen = "" \ No newline at end of file diff --git a/js/euro.js b/js/euro.js index 83c7f24db..572f310bd 100644 --- a/js/euro.js +++ b/js/euro.js @@ -1 +1 @@ -export const Euro = "" \ No newline at end of file +export const euro = "" \ No newline at end of file diff --git a/js/file.js b/js/file.js index dd535dccf..0092a9011 100644 --- a/js/file.js +++ b/js/file.js @@ -1 +1 @@ -export const File = "" \ No newline at end of file +export const file = "" \ No newline at end of file diff --git a/js/globe.js b/js/globe.js index 8c5c824a7..78c0286d8 100644 --- a/js/globe.js +++ b/js/globe.js @@ -1 +1 @@ -export const Globe = "" \ No newline at end of file +export const globe = "" \ No newline at end of file diff --git a/js/graph.js b/js/graph.js index e4fd42de2..db09d8c9a 100644 --- a/js/graph.js +++ b/js/graph.js @@ -1 +1 @@ -export const Graph = "" \ No newline at end of file +export const graph = "" \ No newline at end of file diff --git a/js/home.js b/js/home.js index 2fd6d9cce..9fc5cd476 100644 --- a/js/home.js +++ b/js/home.js @@ -1 +1 @@ -export const Home = "" \ No newline at end of file +export const home = "" \ No newline at end of file diff --git a/js/iconsGenerated.js b/js/iconsGenerated.js index 8881e1cc1..d7f710070 100644 --- a/js/iconsGenerated.js +++ b/js/iconsGenerated.js @@ -1 +1 @@ -export const Icons = {"action-undo":"","action-redo":"","account-logout":"","align-center":"","align-left":"","arrow-bottom":"","arrow-left":"","align-right":"","arrow-right":"","arrow-top":"","basket-loaded":"","ban":"","bell":"","bold":"","bookmark":"","briefcase":"","british-pound":"","brush":"","calculator":"","calendar":"","chart":"","cart":"","check":"","chevron-bottom":"","chevron-left":"","chevron-right":"","chevron-top":"","cloud-download":"","cloud-upload":"","cloud":"","code":"","comment-square":"","credit-card":"","cursor":"","dollar":"","envelope-closed":"","envelope-letter":"","envelope-open":"","euro":"","file":"","globe":"","graph":"","home":"","inbox":"","info":"","italic":"","justify-center":"","justify-left":"","justify-right":"","laptop":"","layers":"","lightbulb":"","list":"","location-pin":"","lock-locked":"","lock-unlocked":"","magnifying-glass":"","map":"","monitor":"","moon":"","note":"","options":"","paperclip":"","pencil":"","people":"","phone":"","print":"","puzzle":"","rss":"","screen-desktop":"","screen-smartphone":"","settings":"","share":"","shield":"","sort-ascending":"","sort-descending":"","speech":"","speedometer":"","star":"","sun":"","tablet":"","tags":"","thumb-down":"","thumb-up":"","trash":"","underline":"","user-female":"","user-follow":"","user-unfollow":"","user":"","yen":""} \ No newline at end of file +export const icons = {"accountLogout":"","actionUndo":"","actionRedo":"","alignCenter":"","alignLeft":"","alignRight":"","arrowBottom":"","arrowLeft":"","arrowRight":"","arrowTop":"","ban":"","bell":"","basketLoaded":"","bold":"","bookmark":"","briefcase":"","britishPound":"","brush":"","calculator":"","calendar":"","cart":"","chart":"","check":"","chevronBottom":"","chevronLeft":"","chevronRight":"","chevronTop":"","cloudDownload":"","cloudUpload":"","cloud":"","code":"","commentSquare":"","creditCard":"","cursor":"","dollar":"","envelopeClosed":"","envelopeLetter":"","envelopeOpen":"","euro":"","file":"","globe":"","graph":"","home":"","inbox":"","info":"","italic":"","justifyCenter":"","justifyLeft":"","justifyRight":"","laptop":"","layers":"","lightbulb":"","list":"","locationPin":"","lockLocked":"","lockUnlocked":"","magnifyingGlass":"","map":"","monitor":"","moon":"","note":"","options":"","paperclip":"","pencil":"","people":"","phone":"","print":"","puzzle":"","rss":"","screenDesktop":"","screenSmartphone":"","settings":"","share":"","shield":"","sortAscending":"","sortDescending":"","speech":"","speedometer":"","star":"","sun":"","tablet":"","tags":"","thumbDown":"","thumbUp":"","trash":"","underline":"","userFemale":"","userFollow":"","userUnfollow":"","user":"","yen":""} \ No newline at end of file diff --git a/js/inbox.js b/js/inbox.js index c0143ac0c..e4b143b5f 100644 --- a/js/inbox.js +++ b/js/inbox.js @@ -1 +1 @@ -export const Inbox = "" \ No newline at end of file +export const inbox = "" \ No newline at end of file diff --git a/js/index.js b/js/index.js index 9a92f4cc8..3c444a486 100644 --- a/js/index.js +++ b/js/index.js @@ -1,186 +1,186 @@ -import { Icons } from './iconsGenerated.js' -export default Icons +import { icons } from './iconsGenerated.js' +export default icons -import { ActionUndo } from './action-undo.js' -import { ActionRedo } from './action-redo.js' -import { AccountLogout } from './account-logout.js' -import { AlignCenter } from './align-center.js' -import { AlignLeft } from './align-left.js' -import { ArrowBottom } from './arrow-bottom.js' -import { ArrowLeft } from './arrow-left.js' -import { AlignRight } from './align-right.js' -import { ArrowRight } from './arrow-right.js' -import { ArrowTop } from './arrow-top.js' -import { BasketLoaded } from './basket-loaded.js' -import { Ban } from './ban.js' -import { Bell } from './bell.js' -import { Bold } from './bold.js' -import { Bookmark } from './bookmark.js' -import { Briefcase } from './briefcase.js' -import { BritishPound } from './british-pound.js' -import { Brush } from './brush.js' -import { Calculator } from './calculator.js' -import { Calendar } from './calendar.js' -import { Chart } from './chart.js' -import { Cart } from './cart.js' -import { Check } from './check.js' -import { ChevronBottom } from './chevron-bottom.js' -import { ChevronLeft } from './chevron-left.js' -import { ChevronRight } from './chevron-right.js' -import { ChevronTop } from './chevron-top.js' -import { CloudDownload } from './cloud-download.js' -import { CloudUpload } from './cloud-upload.js' -import { Cloud } from './cloud.js' -import { Code } from './code.js' -import { CommentSquare } from './comment-square.js' -import { CreditCard } from './credit-card.js' -import { Cursor } from './cursor.js' -import { Dollar } from './dollar.js' -import { EnvelopeClosed } from './envelope-closed.js' -import { EnvelopeLetter } from './envelope-letter.js' -import { EnvelopeOpen } from './envelope-open.js' -import { Euro } from './euro.js' -import { File } from './file.js' -import { Globe } from './globe.js' -import { Graph } from './graph.js' -import { Home } from './home.js' -import { Inbox } from './inbox.js' -import { Info } from './info.js' -import { Italic } from './italic.js' -import { JustifyCenter } from './justify-center.js' -import { JustifyLeft } from './justify-left.js' -import { JustifyRight } from './justify-right.js' -import { Laptop } from './laptop.js' -import { Layers } from './layers.js' -import { Lightbulb } from './lightbulb.js' -import { List } from './list.js' -import { LocationPin } from './location-pin.js' -import { LockLocked } from './lock-locked.js' -import { LockUnlocked } from './lock-unlocked.js' -import { MagnifyingGlass } from './magnifying-glass.js' -import { Map } from './map.js' -import { Monitor } from './monitor.js' -import { Moon } from './moon.js' -import { Note } from './note.js' -import { Options } from './options.js' -import { Paperclip } from './paperclip.js' -import { Pencil } from './pencil.js' -import { People } from './people.js' -import { Phone } from './phone.js' -import { Print } from './print.js' -import { Puzzle } from './puzzle.js' -import { Rss } from './rss.js' -import { ScreenDesktop } from './screen-desktop.js' -import { ScreenSmartphone } from './screen-smartphone.js' -import { Settings } from './settings.js' -import { Share } from './share.js' -import { Shield } from './shield.js' -import { SortAscending } from './sort-ascending.js' -import { SortDescending } from './sort-descending.js' -import { Speech } from './speech.js' -import { Speedometer } from './speedometer.js' -import { Star } from './star.js' -import { Sun } from './sun.js' -import { Tablet } from './tablet.js' -import { Tags } from './tags.js' -import { ThumbDown } from './thumb-down.js' -import { ThumbUp } from './thumb-up.js' -import { Trash } from './trash.js' -import { Underline } from './underline.js' -import { UserFemale } from './user-female.js' -import { UserFollow } from './user-follow.js' -import { UserUnfollow } from './user-unfollow.js' -import { User } from './user.js' -import { Yen } from './yen.js' -export { ActionUndo } -export { ActionRedo } -export { AccountLogout } -export { AlignCenter } -export { AlignLeft } -export { ArrowBottom } -export { ArrowLeft } -export { AlignRight } -export { ArrowRight } -export { ArrowTop } -export { BasketLoaded } -export { Ban } -export { Bell } -export { Bold } -export { Bookmark } -export { Briefcase } -export { BritishPound } -export { Brush } -export { Calculator } -export { Calendar } -export { Chart } -export { Cart } -export { Check } -export { ChevronBottom } -export { ChevronLeft } -export { ChevronRight } -export { ChevronTop } -export { CloudDownload } -export { CloudUpload } -export { Cloud } -export { Code } -export { CommentSquare } -export { CreditCard } -export { Cursor } -export { Dollar } -export { EnvelopeClosed } -export { EnvelopeLetter } -export { EnvelopeOpen } -export { Euro } -export { File } -export { Globe } -export { Graph } -export { Home } -export { Inbox } -export { Info } -export { Italic } -export { JustifyCenter } -export { JustifyLeft } -export { JustifyRight } -export { Laptop } -export { Layers } -export { Lightbulb } -export { List } -export { LocationPin } -export { LockLocked } -export { LockUnlocked } -export { MagnifyingGlass } -export { Map } -export { Monitor } -export { Moon } -export { Note } -export { Options } -export { Paperclip } -export { Pencil } -export { People } -export { Phone } -export { Print } -export { Puzzle } -export { Rss } -export { ScreenDesktop } -export { ScreenSmartphone } -export { Settings } -export { Share } -export { Shield } -export { SortAscending } -export { SortDescending } -export { Speech } -export { Speedometer } -export { Star } -export { Sun } -export { Tablet } -export { Tags } -export { ThumbDown } -export { ThumbUp } -export { Trash } -export { Underline } -export { UserFemale } -export { UserFollow } -export { UserUnfollow } -export { User } -export { Yen } \ No newline at end of file +import { accountLogout } from './accountLogout.js' +import { actionUndo } from './actionUndo.js' +import { actionRedo } from './actionRedo.js' +import { alignCenter } from './alignCenter.js' +import { alignLeft } from './alignLeft.js' +import { alignRight } from './alignRight.js' +import { arrowBottom } from './arrowBottom.js' +import { arrowLeft } from './arrowLeft.js' +import { arrowRight } from './arrowRight.js' +import { arrowTop } from './arrowTop.js' +import { ban } from './ban.js' +import { bell } from './bell.js' +import { basketLoaded } from './basketLoaded.js' +import { bold } from './bold.js' +import { bookmark } from './bookmark.js' +import { briefcase } from './briefcase.js' +import { britishPound } from './britishPound.js' +import { brush } from './brush.js' +import { calculator } from './calculator.js' +import { calendar } from './calendar.js' +import { cart } from './cart.js' +import { chart } from './chart.js' +import { check } from './check.js' +import { chevronBottom } from './chevronBottom.js' +import { chevronLeft } from './chevronLeft.js' +import { chevronRight } from './chevronRight.js' +import { chevronTop } from './chevronTop.js' +import { cloudDownload } from './cloudDownload.js' +import { cloudUpload } from './cloudUpload.js' +import { cloud } from './cloud.js' +import { code } from './code.js' +import { commentSquare } from './commentSquare.js' +import { creditCard } from './creditCard.js' +import { cursor } from './cursor.js' +import { dollar } from './dollar.js' +import { envelopeClosed } from './envelopeClosed.js' +import { envelopeLetter } from './envelopeLetter.js' +import { envelopeOpen } from './envelopeOpen.js' +import { euro } from './euro.js' +import { file } from './file.js' +import { globe } from './globe.js' +import { graph } from './graph.js' +import { home } from './home.js' +import { inbox } from './inbox.js' +import { info } from './info.js' +import { italic } from './italic.js' +import { justifyCenter } from './justifyCenter.js' +import { justifyLeft } from './justifyLeft.js' +import { justifyRight } from './justifyRight.js' +import { laptop } from './laptop.js' +import { layers } from './layers.js' +import { lightbulb } from './lightbulb.js' +import { list } from './list.js' +import { locationPin } from './locationPin.js' +import { lockLocked } from './lockLocked.js' +import { lockUnlocked } from './lockUnlocked.js' +import { magnifyingGlass } from './magnifyingGlass.js' +import { map } from './map.js' +import { monitor } from './monitor.js' +import { moon } from './moon.js' +import { note } from './note.js' +import { options } from './options.js' +import { paperclip } from './paperclip.js' +import { pencil } from './pencil.js' +import { people } from './people.js' +import { phone } from './phone.js' +import { print } from './print.js' +import { puzzle } from './puzzle.js' +import { rss } from './rss.js' +import { screenDesktop } from './screenDesktop.js' +import { screenSmartphone } from './screenSmartphone.js' +import { settings } from './settings.js' +import { share } from './share.js' +import { shield } from './shield.js' +import { sortAscending } from './sortAscending.js' +import { sortDescending } from './sortDescending.js' +import { speech } from './speech.js' +import { speedometer } from './speedometer.js' +import { star } from './star.js' +import { sun } from './sun.js' +import { tablet } from './tablet.js' +import { tags } from './tags.js' +import { thumbDown } from './thumbDown.js' +import { thumbUp } from './thumbUp.js' +import { trash } from './trash.js' +import { underline } from './underline.js' +import { userFemale } from './userFemale.js' +import { userFollow } from './userFollow.js' +import { userUnfollow } from './userUnfollow.js' +import { user } from './user.js' +import { yen } from './yen.js' +export { accountLogout } +export { actionUndo } +export { actionRedo } +export { alignCenter } +export { alignLeft } +export { alignRight } +export { arrowBottom } +export { arrowLeft } +export { arrowRight } +export { arrowTop } +export { ban } +export { bell } +export { basketLoaded } +export { bold } +export { bookmark } +export { briefcase } +export { britishPound } +export { brush } +export { calculator } +export { calendar } +export { cart } +export { chart } +export { check } +export { chevronBottom } +export { chevronLeft } +export { chevronRight } +export { chevronTop } +export { cloudDownload } +export { cloudUpload } +export { cloud } +export { code } +export { commentSquare } +export { creditCard } +export { cursor } +export { dollar } +export { envelopeClosed } +export { envelopeLetter } +export { envelopeOpen } +export { euro } +export { file } +export { globe } +export { graph } +export { home } +export { inbox } +export { info } +export { italic } +export { justifyCenter } +export { justifyLeft } +export { justifyRight } +export { laptop } +export { layers } +export { lightbulb } +export { list } +export { locationPin } +export { lockLocked } +export { lockUnlocked } +export { magnifyingGlass } +export { map } +export { monitor } +export { moon } +export { note } +export { options } +export { paperclip } +export { pencil } +export { people } +export { phone } +export { print } +export { puzzle } +export { rss } +export { screenDesktop } +export { screenSmartphone } +export { settings } +export { share } +export { shield } +export { sortAscending } +export { sortDescending } +export { speech } +export { speedometer } +export { star } +export { sun } +export { tablet } +export { tags } +export { thumbDown } +export { thumbUp } +export { trash } +export { underline } +export { userFemale } +export { userFollow } +export { userUnfollow } +export { user } +export { yen } \ No newline at end of file diff --git a/js/info.js b/js/info.js index de397be9b..1766fbaa8 100644 --- a/js/info.js +++ b/js/info.js @@ -1 +1 @@ -export const Info = "" \ No newline at end of file +export const info = "" \ No newline at end of file diff --git a/js/italic.js b/js/italic.js index 0c9653a01..09207ebce 100644 --- a/js/italic.js +++ b/js/italic.js @@ -1 +1 @@ -export const Italic = "" \ No newline at end of file +export const italic = "" \ No newline at end of file diff --git a/js/justify-center.js b/js/justifyCenter.js similarity index 71% rename from js/justify-center.js rename to js/justifyCenter.js index a9dc9feff..404cd4c32 100644 --- a/js/justify-center.js +++ b/js/justifyCenter.js @@ -1 +1 @@ -export const JustifyCenter = "" \ No newline at end of file +export const justifyCenter = "" \ No newline at end of file diff --git a/js/justify-left.js b/js/justifyLeft.js similarity index 70% rename from js/justify-left.js rename to js/justifyLeft.js index 997098218..b8a89f96c 100644 --- a/js/justify-left.js +++ b/js/justifyLeft.js @@ -1 +1 @@ -export const JustifyLeft = "" \ No newline at end of file +export const justifyLeft = "" \ No newline at end of file diff --git a/js/justify-right.js b/js/justifyRight.js similarity index 70% rename from js/justify-right.js rename to js/justifyRight.js index a1a04b472..9ac1b858b 100644 --- a/js/justify-right.js +++ b/js/justifyRight.js @@ -1 +1 @@ -export const JustifyRight = "" \ No newline at end of file +export const justifyRight = "" \ No newline at end of file diff --git a/js/laptop.js b/js/laptop.js index 55c0c44c2..368a2aa97 100644 --- a/js/laptop.js +++ b/js/laptop.js @@ -1 +1 @@ -export const Laptop = "" \ No newline at end of file +export const laptop = "" \ No newline at end of file diff --git a/js/layers.js b/js/layers.js index cbdcb6528..fee4f8c19 100644 --- a/js/layers.js +++ b/js/layers.js @@ -1 +1 @@ -export const Layers = "" \ No newline at end of file +export const layers = "" \ No newline at end of file diff --git a/js/lightbulb.js b/js/lightbulb.js index b6e4f4aba..21d0dc3e6 100644 --- a/js/lightbulb.js +++ b/js/lightbulb.js @@ -1 +1 @@ -export const Lightbulb = "" \ No newline at end of file +export const lightbulb = "" \ No newline at end of file diff --git a/js/list.js b/js/list.js index fe007f39b..4ec6714e8 100644 --- a/js/list.js +++ b/js/list.js @@ -1 +1 @@ -export const List = "" \ No newline at end of file +export const list = "" \ No newline at end of file diff --git a/js/location-pin.js b/js/locationPin.js similarity index 91% rename from js/location-pin.js rename to js/locationPin.js index 4a1d085d6..2c3981f24 100644 --- a/js/location-pin.js +++ b/js/locationPin.js @@ -1 +1 @@ -export const LocationPin = "" \ No newline at end of file +export const locationPin = "" \ No newline at end of file diff --git a/js/lock-locked.js b/js/lockLocked.js similarity index 77% rename from js/lock-locked.js rename to js/lockLocked.js index 40a0adc48..d30ee1c02 100644 --- a/js/lock-locked.js +++ b/js/lockLocked.js @@ -1 +1 @@ -export const LockLocked = "" \ No newline at end of file +export const lockLocked = "" \ No newline at end of file diff --git a/js/lock-unlocked.js b/js/lockUnlocked.js similarity index 81% rename from js/lock-unlocked.js rename to js/lockUnlocked.js index edc7bfff7..25c739430 100644 --- a/js/lock-unlocked.js +++ b/js/lockUnlocked.js @@ -1 +1 @@ -export const LockUnlocked = "" \ No newline at end of file +export const lockUnlocked = "" \ No newline at end of file diff --git a/js/magnifying-glass.js b/js/magnifyingGlass.js similarity index 90% rename from js/magnifying-glass.js rename to js/magnifyingGlass.js index e1418cea6..46c6f45dd 100644 --- a/js/magnifying-glass.js +++ b/js/magnifyingGlass.js @@ -1 +1 @@ -export const MagnifyingGlass = "" \ No newline at end of file +export const magnifyingGlass = "" \ No newline at end of file diff --git a/js/map.js b/js/map.js index 393044018..d042877db 100644 --- a/js/map.js +++ b/js/map.js @@ -1 +1 @@ -export const Map = "" \ No newline at end of file +export const map = "" \ No newline at end of file diff --git a/js/monitor.js b/js/monitor.js index 171156969..6f1fa56eb 100644 --- a/js/monitor.js +++ b/js/monitor.js @@ -1 +1 @@ -export const Monitor = "" \ No newline at end of file +export const monitor = "" \ No newline at end of file diff --git a/js/moon.js b/js/moon.js index 27e5634d3..ff5af0025 100644 --- a/js/moon.js +++ b/js/moon.js @@ -1 +1 @@ -export const Moon = "" \ No newline at end of file +export const moon = "" \ No newline at end of file diff --git a/js/note.js b/js/note.js index d997a9ffa..93e0f37e3 100644 --- a/js/note.js +++ b/js/note.js @@ -1 +1 @@ -export const Note = "" \ No newline at end of file +export const note = "" \ No newline at end of file diff --git a/js/options.js b/js/options.js index bdf36ac28..43a3b732b 100644 --- a/js/options.js +++ b/js/options.js @@ -1 +1 @@ -export const Options = "" \ No newline at end of file +export const options = "" \ No newline at end of file diff --git a/js/paperclip.js b/js/paperclip.js index fa843ad6e..bf606ff69 100644 --- a/js/paperclip.js +++ b/js/paperclip.js @@ -1 +1 @@ -export const Paperclip = "" \ No newline at end of file +export const paperclip = "" \ No newline at end of file diff --git a/js/pencil.js b/js/pencil.js index 462177444..8f09d2a2b 100644 --- a/js/pencil.js +++ b/js/pencil.js @@ -1 +1 @@ -export const Pencil = "" \ No newline at end of file +export const pencil = "" \ No newline at end of file diff --git a/js/people.js b/js/people.js index fa4411874..acad85b29 100644 --- a/js/people.js +++ b/js/people.js @@ -1 +1 @@ -export const People = "" \ No newline at end of file +export const people = "" \ No newline at end of file diff --git a/js/phone.js b/js/phone.js index ae8e4001a..a303ea989 100644 --- a/js/phone.js +++ b/js/phone.js @@ -1 +1 @@ -export const Phone = "" \ No newline at end of file +export const phone = "" \ No newline at end of file diff --git a/js/print.js b/js/print.js index 0e5769ad9..bfc00a62c 100644 --- a/js/print.js +++ b/js/print.js @@ -1 +1 @@ -export const Print = "" \ No newline at end of file +export const print = "" \ No newline at end of file diff --git a/js/puzzle.js b/js/puzzle.js index 19eb5fa03..43a901632 100644 --- a/js/puzzle.js +++ b/js/puzzle.js @@ -1 +1 @@ -export const Puzzle = "" \ No newline at end of file +export const puzzle = "" \ No newline at end of file diff --git a/js/rss.js b/js/rss.js index c0fd65285..1421873b3 100644 --- a/js/rss.js +++ b/js/rss.js @@ -1 +1 @@ -export const Rss = "" \ No newline at end of file +export const rss = "" \ No newline at end of file diff --git a/js/screen-desktop.js b/js/screenDesktop.js similarity index 72% rename from js/screen-desktop.js rename to js/screenDesktop.js index 5bac3d289..c235c7599 100644 --- a/js/screen-desktop.js +++ b/js/screenDesktop.js @@ -1 +1 @@ -export const ScreenDesktop = "" \ No newline at end of file +export const screenDesktop = "" \ No newline at end of file diff --git a/js/screen-smartphone.js b/js/screenSmartphone.js similarity index 78% rename from js/screen-smartphone.js rename to js/screenSmartphone.js index d45a3b2ea..c851490fc 100644 --- a/js/screen-smartphone.js +++ b/js/screenSmartphone.js @@ -1 +1 @@ -export const ScreenSmartphone = "" \ No newline at end of file +export const screenSmartphone = "" \ No newline at end of file diff --git a/js/settings.js b/js/settings.js index 60e03a02d..97d309766 100644 --- a/js/settings.js +++ b/js/settings.js @@ -1 +1 @@ -export const Settings = "" \ No newline at end of file +export const settings = "" \ No newline at end of file diff --git a/js/share.js b/js/share.js index 024b725fb..e36793cfa 100644 --- a/js/share.js +++ b/js/share.js @@ -1 +1 @@ -export const Share = "" \ No newline at end of file +export const share = "" \ No newline at end of file diff --git a/js/shield.js b/js/shield.js index c43f09496..22cc181c6 100644 --- a/js/shield.js +++ b/js/shield.js @@ -1 +1 @@ -export const Shield = "" \ No newline at end of file +export const shield = "" \ No newline at end of file diff --git a/js/sort-ascending.js b/js/sortAscending.js similarity index 79% rename from js/sort-ascending.js rename to js/sortAscending.js index 6c4f11707..b96727e62 100644 --- a/js/sort-ascending.js +++ b/js/sortAscending.js @@ -1 +1 @@ -export const SortAscending = "" \ No newline at end of file +export const sortAscending = "" \ No newline at end of file diff --git a/js/sort-descending.js b/js/sortDescending.js similarity index 79% rename from js/sort-descending.js rename to js/sortDescending.js index 174b3e1e3..ad87d820f 100644 --- a/js/sort-descending.js +++ b/js/sortDescending.js @@ -1 +1 @@ -export const SortDescending = "" \ No newline at end of file +export const sortDescending = "" \ No newline at end of file diff --git a/js/speech.js b/js/speech.js index ae42371d0..dd568a516 100644 --- a/js/speech.js +++ b/js/speech.js @@ -1 +1 @@ -export const Speech = "" \ No newline at end of file +export const speech = "" \ No newline at end of file diff --git a/js/speedometer.js b/js/speedometer.js index f4b113496..33fb72c2d 100644 --- a/js/speedometer.js +++ b/js/speedometer.js @@ -1 +1 @@ -export const Speedometer = "" \ No newline at end of file +export const speedometer = "" \ No newline at end of file diff --git a/js/star.js b/js/star.js index 8c8c4492c..1c513bbcc 100644 --- a/js/star.js +++ b/js/star.js @@ -1 +1 @@ -export const Star = "" \ No newline at end of file +export const star = "" \ No newline at end of file diff --git a/js/sun.js b/js/sun.js index 182b5f525..19ec3cf7c 100644 --- a/js/sun.js +++ b/js/sun.js @@ -1 +1 @@ -export const Sun = "" \ No newline at end of file +export const sun = "" \ No newline at end of file diff --git a/js/tablet.js b/js/tablet.js index 5398892c0..4d6fb3bce 100644 --- a/js/tablet.js +++ b/js/tablet.js @@ -1 +1 @@ -export const Tablet = "" \ No newline at end of file +export const tablet = "" \ No newline at end of file diff --git a/js/tags.js b/js/tags.js index cd5a6fc6a..7fd951b90 100644 --- a/js/tags.js +++ b/js/tags.js @@ -1 +1 @@ -export const Tags = "" \ No newline at end of file +export const tags = "" \ No newline at end of file diff --git a/js/thumb-down.js b/js/thumbDown.js similarity index 94% rename from js/thumb-down.js rename to js/thumbDown.js index 9ceef8841..fddeb454c 100644 --- a/js/thumb-down.js +++ b/js/thumbDown.js @@ -1 +1 @@ -export const ThumbDown = "" \ No newline at end of file +export const thumbDown = "" \ No newline at end of file diff --git a/js/thumb-up.js b/js/thumbUp.js similarity index 94% rename from js/thumb-up.js rename to js/thumbUp.js index aacaa3624..0f6cf36d5 100644 --- a/js/thumb-up.js +++ b/js/thumbUp.js @@ -1 +1 @@ -export const ThumbUp = "" \ No newline at end of file +export const thumbUp = "" \ No newline at end of file diff --git a/js/trash.js b/js/trash.js index c1e0fbcac..1077b14df 100644 --- a/js/trash.js +++ b/js/trash.js @@ -1 +1 @@ -export const Trash = "" \ No newline at end of file +export const trash = "" \ No newline at end of file diff --git a/js/underline.js b/js/underline.js index e57a8d7e4..f3be54f10 100644 --- a/js/underline.js +++ b/js/underline.js @@ -1 +1 @@ -export const Underline = "" \ No newline at end of file +export const underline = "" \ No newline at end of file diff --git a/js/user.js b/js/user.js index cdfa42c0d..d94bf51f9 100644 --- a/js/user.js +++ b/js/user.js @@ -1 +1 @@ -export const User = "" \ No newline at end of file +export const user = "" \ No newline at end of file diff --git a/js/user-female.js b/js/userFemale.js similarity index 93% rename from js/user-female.js rename to js/userFemale.js index 403c5bd70..5fc0e6572 100644 --- a/js/user-female.js +++ b/js/userFemale.js @@ -1 +1 @@ -export const UserFemale = "" \ No newline at end of file +export const userFemale = "" \ No newline at end of file diff --git a/js/user-follow.js b/js/userFollow.js similarity index 90% rename from js/user-follow.js rename to js/userFollow.js index f65f642d8..9c3480002 100644 --- a/js/user-follow.js +++ b/js/userFollow.js @@ -1 +1 @@ -export const UserFollow = "" \ No newline at end of file +export const userFollow = "" \ No newline at end of file diff --git a/js/user-unfollow.js b/js/userUnfollow.js similarity index 92% rename from js/user-unfollow.js rename to js/userUnfollow.js index 903072f03..d6c0933e7 100644 --- a/js/user-unfollow.js +++ b/js/userUnfollow.js @@ -1 +1 @@ -export const UserUnfollow = "" \ No newline at end of file +export const userUnfollow = "" \ No newline at end of file diff --git a/js/yen.js b/js/yen.js index d52c92113..09b83e0b1 100644 --- a/js/yen.js +++ b/js/yen.js @@ -1 +1 @@ -export const Yen = "" \ No newline at end of file +export const yen = "" \ No newline at end of file