Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | 1414x | import { BorderRadiiThemeConfig } from '../types'; export default (overrides: BorderRadiiThemeConfig) => ({ default: '8px', '0': '0px', '1': '2px', '2': '4px', '3': '8px', '4': '16px', '5': '32px', '6': '64px', ...overrides }); |