![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
@meniga/icons
Advanced tools
The icons library is to keep all of our custom icon webfonts in one place.
The icons library is to keep all of our custom icon webfonts in one place.
In Bank42 we use the MeniconActions font for action icons (Icon component) and MeniconCategories fonts for category icons (CategoryIcon component)
The Lato font is used in MMS and Merchant Portal
In order to use a custom font you need to import it to your applications LESS theme, example:
@import '~@meniga/icons/menicon-actions/less/menicon';
@import '~@meniga/icons/menicon-categories/less/menicon-categories';
body, input {
font-family: Arial, Tahoma, Verdana, Helvetica, Sans-Serif;
}
.Icon {
&:before {
font-family: 'MeniconActions';
}
}
.CategoryIcon.Icon {
&:before {
font-family: 'MeniconCategories';
}
}
.Textarea-input {
font-family: Arial, Tahoma, Verdana, Helvetica, Sans-Serif;
}
and then you need to add this file (let's call it fonts.less) as as entry in your custom webpack config, example:
const { resolve } = require('path')
module.exports = function ( { plugins } ) {
return {
entry: {
Fonts: resolve(__dirname, './app/assets/styles/Fonts.less'),
},
...
}
}
If you have a new webfont (e.g. .zip file from our designers) with the new icons you need extract the file and copy the contents over to @meniga/icons.
The contents of MeniconActions should be copied to the menicon-actions folder, and the contents of MeniconCategories should be copied to the menicon-categories folder.
Then you need to open your command line tool in the root of the @meniga/icons repo and run the following script:
npm run generate
This will read the SVG files from the fonts and generate new versions of the LESS files that your application is importing.
Then just commit the updated files to git.
If you want to get more details from the generation, such as knowing about duplicate icons, missing mappings etc, run:
npm run generate-debug
FAQs
The icons library is to keep all of our custom icon webfonts in one place.
The npm package @meniga/icons receives a total of 261 weekly downloads. As such, @meniga/icons popularity was classified as not popular.
We found that @meniga/icons demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.