We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a852ec commit b49b8d4Copy full SHA for b49b8d4
src/rules/no-system-props.js
@@ -3,7 +3,11 @@ const {pick} = require('@styled-system/props')
3
const {some, last} = require('lodash')
4
5
// Components for which we allow all styled system props
6
-const excludedComponents = new Set(['Box', 'Text'])
+const excludedComponents = new Set([
7
+ 'Box',
8
+ 'Text',
9
+ 'BaseStyles' // BaseStyles will be deprecated eventually
10
+])
11
12
// Components for which we allow a set of prop names
13
const excludedComponentProps = new Map([
0 commit comments