mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-18 09:35:20 +02:00
18 lines
526 B
TypeScript
18 lines
526 B
TypeScript
|
import apache2License from '../../licenseText/apache2';
|
||
|
import { DependencyType } from '../../getLicenses';
|
||
|
import { LicenseOverride } from '../types';
|
||
|
|
||
|
const materialCommunityIconsOverride: LicenseOverride = {
|
||
|
packageName: 'material icons and symbols',
|
||
|
replacePackagesMatching: null,
|
||
|
mode: DependencyType.Production,
|
||
|
info: {
|
||
|
licenses: 'Apache-2.0',
|
||
|
repository: 'https://github.com/google/material-design-icons',
|
||
|
path: __dirname,
|
||
|
licenseText: apache2License,
|
||
|
},
|
||
|
};
|
||
|
|
||
|
export default materialCommunityIconsOverride;
|