Create a rule to disallow directly accessing themes from sx
or styled system props #17
Open
Description
A no-theme-access-out-of-context rule would keep you from doing this:
import {theme, Box} from '@primer/components'
<Box width={theme.sizes.large} />
And auto-fix it to:
<Box width="large" />