mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-18 22:11:55 +03:00
42 lines
937 B
JavaScript
42 lines
937 B
JavaScript
|
/**
|
||
|
* Some icons may be downloaded with incorrect styles, and some styles need to be added.
|
||
|
* key is the name of the icon's kebab-case.
|
||
|
*/
|
||
|
const patchStyles = {
|
||
|
// add: {
|
||
|
// fill: 'none',
|
||
|
// fillOpacity: 0,
|
||
|
// stroke: 'currentColor'
|
||
|
// },
|
||
|
// text: {
|
||
|
// stroke: 'currentColor'
|
||
|
// },
|
||
|
// rectangle: {
|
||
|
// fill: 'none',
|
||
|
// fillOpacity: 0,
|
||
|
// stroke: 'currentColor'
|
||
|
// },
|
||
|
// ellipse: {
|
||
|
// fill: 'none',
|
||
|
// fillOpacity: 0,
|
||
|
// stroke: 'currentColor'
|
||
|
// },
|
||
|
// triangle: {
|
||
|
// fill: 'none',
|
||
|
// fillOpacity: 0,
|
||
|
// stroke: 'currentColor'
|
||
|
// },
|
||
|
// polygon: {
|
||
|
// fill: 'none',
|
||
|
// fillOpacity: 0,
|
||
|
// stroke: 'currentColor'
|
||
|
// },
|
||
|
// shape: {
|
||
|
// fill: 'none',
|
||
|
// fillOpacity: 0,
|
||
|
// stroke: 'currentColor'
|
||
|
// }
|
||
|
};
|
||
|
|
||
|
module.exports = patchStyles;
|