Rename svgFill to fill

This commit is contained in:
Adam Wathan 2019-02-14 15:33:51 -05:00
parent b6b67e1c8c
commit 7abbf520df
6 changed files with 5 additions and 5 deletions

View File

@ -42,7 +42,7 @@ module.exports = {
position: ['responsive'],
resize: ['responsive'],
boxShadow: ['responsive', 'hover', 'focus'],
svgFill: [],
fill: [],
svgStroke: [],
tableLayout: ['responsive'],
textAlign: ['responsive'],

View File

@ -340,7 +340,7 @@ module.exports = function() {
'75': '.75',
'100': '1',
},
svgFill: {
fill: {
current: 'currentColor',
},
svgStroke: {

1
plugins/fill.js Normal file
View File

@ -0,0 +1 @@
module.exports = require('../lib/plugins/fill').default

View File

@ -1 +0,0 @@
module.exports = require('../lib/plugins/svgFill').default

View File

@ -35,7 +35,7 @@ import pointerEvents from './plugins/pointerEvents'
import position from './plugins/position'
import resize from './plugins/resize'
import shadows from './plugins/shadows'
import svgFill from './plugins/svgFill'
import fill from './plugins/fill'
import svgStroke from './plugins/svgStroke'
import tableLayout from './plugins/tableLayout'
import textAlign from './plugins/textAlign'
@ -106,7 +106,7 @@ export default function(config) {
position,
resize,
shadows,
svgFill,
fill,
svgStroke,
tableLayout,
textAlign,