AFFiNE/tools/executors/figmaRes/patch-styles.js

42 lines
937 B
JavaScript
Raw Normal View History

/**
* 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;