A no-theme-access-out-of-context rule would keep you from doing this: ```typescript import {theme, Box} from '@primer/components' <Box width={theme.sizes.large} /> ``` And auto-fix it to: ```typescript <Box width="large" /> ```